/* Components CSS */

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-white);
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.btn:hover {
    background-color: #f0f0f0;
    /* Soft light grey */
    transform: scale(1.02);
    border-color: #f0f0f0;
}

/* Inputs */
.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-black);
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid #ccc;
    border-radius: 20px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(55, 148, 158, 0.1);
}

/* Disclaimer */
.disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--color-dark);
    line-height: 1.4;
    opacity: 0.8;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--color-white);
    border: none;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

/* Ensure slide images cover appropriately */
.slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #25e666;
    /* Slightly lighter/brighter green on hover */
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: var(--color-white);
}