/* General Styling */
.luxury-container {
    background-color: #f8f8f8;
    padding: 50px 20px;
}

.luxury-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.luxury-subtitle {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* Service Section */
.service-section {
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    min-height: 350px; /* Consistent height */
}

.service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-section.bg-light {
    background-color: #f9f9f9;
}

.service-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.service-section p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Service Icons */
.service-section img {
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    height: 300px; /* Increased height for larger screens */
    width: 100%;
    object-fit: cover;
    max-width: 50%; /* Ensure images are wide */
}

.service-section img:hover {
    transform: scale(1.05);
}

/* Buttons */
.btn-custom {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    border: 2px solid #333; /* Neutral border */
    background-color: transparent;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #333;
    color: #fff;
}

/* Uniform Layout for Sections */
.service-section .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

/* Testimonials Section */
.testimonials-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 15px;
    margin-top: 50px;
}

.testimonials-section h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

.testimonials-section blockquote {
    font-size: 1.1rem;
    color: #555;
    margin: 20px 0;
    padding: 20px 25px;
    border-left: 4px solid #333;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonials-section blockquote footer {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-section h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .luxury-title {
        font-size: 2.4rem;
    }

    .luxury-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .service-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        min-height: auto; /* Allow variable height */
    }

    .service-section img {
        height: 200px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .service-section .col-md-6 {
        max-width: 100%;
    }

    .service-section h2 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .service-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .btn-custom {
        width: 100%;
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .testimonials-section h3 {
        font-size: 1.8rem;
    }

    .testimonials-section blockquote {
        font-size: 1rem;
    }

    .contact-section h3 {
        font-size: 1.8rem;
    }

    .contact-section p {
        font-size: 0.9rem;
    }
}
