/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: #007bff; }
.float-btn.call:hover { background: #0056b3; }
.float-btn.whatsapp:hover { background: #128c7e; }
.float-btn:active { transform: scale(0.95); }
@media (max-width: 600px) {
    .floating-contact-buttons { right: 10px; bottom: 10px; gap: 10px; }
    .float-btn { width: 44px; height: 44px; font-size: 1.5rem; }
}
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

h1, h2, h3 {
    color: #343a40;
}

p {
    color: #6c757d;
}

.btn {
    border-radius: 5px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ced4da;
}

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

.card {
    border: 1px solid #ced4da;
    border-radius: 5px;
    margin-bottom: 20px;
}

.card-header {
    background-color: #e9ecef;
    border-bottom: 1px solid #ced4da;
}

.card-body {
    padding: 15px;
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #343a40;
    color: white;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
}