/* =========================================
   Re-Cup Page Styles
   ========================================= */

/* Hero Section */
.page-hero-recup {
    background-color: #fff;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero-recup .hero-content-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.page-hero-recup .hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.page-hero-recup .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #43c0b5;
    /* Teal color */
    margin-bottom: 20px;
}

.page-hero-recup .hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    font-weight: 300;
}

.page-hero-recup .hero-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.page-hero-recup .hero-image img {
    max-width: 100%;
    height: auto;
    /* transform: scale(1.1); */
}

/* Content Section */
.recup-content-section {
    padding: 60px 0;
    background-color: #fff;
}

.recup-content-section .section-title {
    color: #43c0b5;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.recup-content-section .text-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Order Section */
.recup-order-section {
    padding: 60px 0 100px;
    background-color: #f9f9f9;
    /* Light grey bg for form area */
}

.order-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #777;
    margin-bottom: 40px;
}

.recup-form .form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .recup-form .form-grid {
        grid-template-columns: 1fr;
    }
}

.recup-form .form-control {
    background-color: #f0f0f0;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 12px 20px;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.recup-form .form-control:focus {
    background-color: #fff;
    border-color: #43c0b5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(67, 192, 181, 0.1);
}

.recup-form textarea.form-control {
    resize: vertical;
}

/* Checkbox Styling */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: #666;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 4px;
}

.checkbox-container:hover .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked~.checkmark {
    background-color: #43c0b5;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Button */
.btn-primary {
    background-color: #43c0b5;
    border-color: #43c0b5;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #3aa89e;
    border-color: #3aa89e;
}