/* Services Section Styles */
.services-section {
    position: relative;
    padding: 120px 0;
    color: #fff;
    background-color: #0a1a2a;
    background-image: url('../images/ocean-aerial-view.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 26, 42, 0.92);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.services-section .section-title {
    color: #fff;
    font-size: 42px;
    margin-bottom: 0;
}

.services-yacht-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 300px;
    z-index: 1;
    filter: brightness(1.1);
    max-height: 400px;
    object-fit: contain;
}

.services-layout {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.services-column {
    width: 45%;
}

.service-item {
    margin-bottom: 80px;
    position: relative;
}

.service-number {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
    display: block;
    letter-spacing: 2px;
}

.service-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    letter-spacing: 1px;
}

.service-link:hover {
    opacity: 0.8;
}

.service-link i {
    margin-left: 8px;
}

.service-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    width: 100%;
    margin: 15px 0 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-yacht-image {
        opacity: 0.2;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .services-layout {
        flex-direction: column;
    }
    
    .services-column {
        width: 100%;
    }
    
    .service-item {
        margin-bottom: 50px;
    }
    
    .services-section .section-title {
        font-size: 32px;
    }
}
