/* General Styles */
body {
    padding-top: 76px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    position: relative;
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact-info {
    font-size: 1.1rem;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    color: #007bff;
    margin-right: 10px;
}

.contact-info .social-links a {
    font-size: 1.5rem;
    color: #007bff;
    transition: color 0.3s ease;
}

.contact-info .social-links a:hover {
    color: #0056b3;
}

.contact-form.card {
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.contact-form .card-title {
    color: #2c3e50;
    font-weight: 600;
}

.contact-form label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

.contact-form .invalid-feedback {
    font-size: 0.875rem;
}

.contact-form .form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
}

.contact-form .form-check-label {
    font-weight: normal;
}

.contact-form .btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

.floating-buttons a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

.btn-call {
    background-color: #28a745;
}

.btn-whatsapp {
    background-color: #25d366;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card i {
        font-size: 2.5rem;
    }
    
    .floating-buttons a {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}