.gradient-bg {
    background: linear-gradient(135deg, #0077b6 0%, #fb6f92 100%);
}

/* WhatsApp Lead Capture Styles */
.whatsapp-link {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 15px;
    right: 15px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-link:hover {
    background-color: #1ebe57;
    color: white;
}

.popup-form-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 30px 20px 20px 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    z-index: 1000000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    box-sizing: border-box;
}

.form-title {
    background-color: #25d366;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border-radius: 8px 8px 0 0;
    text-align: center;
    margin: -30px -20px 20px -20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    z-index: 1000001;
}

.popup-form {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.popup-form input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
}

.popup-form button[type="submit"] {
    padding: 12px;
    background-color: #ffffff;
    color: #25d366;
    border: 2px solid #25d366;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.popup-form button[type="submit"]:hover {
    background-color: #25d366;
    color: white;
}

.error-message,
.status-message,
.loading-message {
    font-size: 14px;
    display: none;
}

.error-message {
    color: red;
}

.status-message {
    color: green;
}

.loading-message {
    color: #25d366;
}
