/* Services Hero Section */
.services-hero {
    height: 60vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/villas/L55.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 4rem;
}

.services-hero .hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Service Highlight Sections */
.service-highlight {
    padding: 4rem 0;
    background-color: #fff;
}

.service-highlight-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-highlight h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.service-tagline {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.partner-logo {
    height: 40px;
    width: auto;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature i {
    font-size: 2.5rem;
    color: #c8a97e;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Service Galleries */
.service-gallery, .yacht-gallery, .chef-preparation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-gallery img, .yacht-gallery img, .chef-preparation img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.service-gallery img:hover, .yacht-gallery img:hover, .chef-preparation img:hover {
    transform: scale(1.05);
}

/* Yacht Sections */
.yacht-section {
    margin-bottom: 4rem;
}

.yacht-section h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.yacht-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.yacht-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    list-style: none;
    padding: 0;
}

.yacht-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c3e50;
}

.yacht-features i {
    color: #c8a97e;
}

/* Car Section */
.car-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit i {
    font-size: 2.5rem;
    color: #c8a97e;
    margin-bottom: 1rem;
}

.car-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.car-card {
    text-align: center;
}

.car-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Additional Services */
.additional-services {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.5rem;
    color: #c8a97e;
    margin-bottom: 1rem;
}

/* CTA Sections */
.services-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/services/cta-background.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #c8a97e;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background-color: #b69066;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }

    .service-highlight h2 {
        font-size: 2rem;
    }

    .service-gallery, .yacht-gallery, .chef-preparation {
        grid-template-columns: 1fr;
    }

    .service-features, .car-benefits {
        grid-template-columns: 1fr;
    }

    .yacht-features {
        grid-template-columns: 1fr 1fr;
    }
} 