/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url('../img/plumbing-banner.webp') no-repeat center center;    background-size: cover;
    min-height: 80vh;
    padding-top: 80px;
}

/* Iconos de servicios */
.icon-service {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

.icon-service i {
    font-size: 2rem;
}

/* Iconos de razones */
.icon-reason i {
    color: rgba(255, 255, 255, 0.8);
}

/* Tarjetas de servicios */
.card {
    transition: transform 0.3s ease;
}

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

/* Formulario de contacto */
.form-control, .form-select {
    padding: 10px 15px;
    border-radius: 8px;
}

/* Mapa */
.map-section {
    width: 100%;
}

/* Footer */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
    }
}