/* Hero Image */
.hero-image {
    margin-top: 70px;
    height: 300px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Service Sections */
.service-section {
    display: flex;
    min-height: 500px;
    align-items: center;
    padding: 50px;
    transition: all 0.5s ease;
}

.service-section:hover {
    transform: translateY(-5px);
}

.dark-section {
    background-color: #111;
}

.black-section {
    background-color: #000;
}

.service-content {
    flex: 1;
    padding: 30px;
}

.service-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
}

.service-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.service-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: #808080;
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ccc;
}

.service-btn {
    background-color: #808080;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-btn:hover {
    background-color: #6e6e6e;
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}

/* Contact Form Section */
.contact-form-section {
    padding: 50px;
    background-color: #000;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: #111;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255,255,255,0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 4px;
    color: white;
    font-size: 16px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    grid-column: span 2;
    background-color: #808080;
    color: white;
    border: none;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #6e6e6e;
}

/* Google Map Section */
.map-section {
    height: 500px;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta-section {
    background-color: #222;
    padding: 50px;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {
    .service-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .service-image {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .service-image img {
        height: auto;
    }

    .service-content {
        padding: 0;
    }
}
