/* Hero Section */
.hero {
    min-height: 50vh;
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

    .hero::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: moveGrid 20s linear infinite;
    }

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    color: #F9F6F1;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3rem;
    color: white;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 6px;
}

.hero-subtitle {
    color: white;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Container */
.register.container {
    margin: -50px auto 0;
    position: relative;
    z-index: 3;
}

/* Form Card */
.form-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(199, 173, 144, 0.15);
    animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-section {
    margin-bottom: 2.5rem;
}

.form-section-title {
    font-size: 1.5rem;
    color: #9B8570;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    border-bottom: 2px solid #F0E5D9;
    padding-bottom: 0.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: #58595B;
    font-weight: 400;
    font-size: 0.95rem;
}

.required {
    color: #C7AD90;
    margin-left: 3px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid #F0E5D9;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #58595B;
    transition: all 0.3s ease;
    background: #F9F6F1;
}

    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
        border-color: #C7AD90;
        background: white;
        box-shadow: 0 0 0 3px rgba(199, 173, 144, 0.1);
    }

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Package Selection */
.package-options {
    display: grid;
    gap: 1rem;
}

.package-option {
    position: relative;
}

    .package-option input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

.package-label {
    display: block;
    padding: 1.5rem;
    border: 2px solid #F0E5D9;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #F9F6F1;
}

.package-option input[type="radio"]:checked + .package-label {
    border-color: #C7AD90;
    background: white;
    box-shadow: 0 5px 20px rgba(199, 173, 144, 0.15);
}

.package-name {
    font-size: 1.2rem;
    color: #9B8570;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.5rem;
    color: #C7AD90;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.package-details {
    font-size: 0.9rem;
    color: #58595B;
    font-weight: 300;
}

/* Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

    .checkbox-group input[type="checkbox"] {
        width: auto;
        margin-top: 0.2rem;
        cursor: pointer;
    }

    .checkbox-group label {
        margin-bottom: 0;
        cursor: pointer;
        font-size: 0.9rem;
        line-height: 1.6;
    }

/* Submit Button */
.submit-section {
    text-align: center;
    margin-top: 3rem;
}

.submit-button {
    display: inline-block;
    padding: 1.2rem 4rem;
    background: linear-gradient(135deg, #C7AD90, #9B8570);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(199, 173, 144, 0.3);
}

    .submit-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(199, 173, 144, 0.4);
    }

    .submit-button:active {
        transform: translateY(-1px);
    }

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #F0E5D9 0%, #E8DDD0 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid #C7AD90;
}

    .info-box p {
        color: #58595B;
        font-size: 0.95rem;
        line-height: 1.8;
        font-weight: 300;
    }

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, #C7AD90 0%, #9B8570 100%);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 2rem;
}

    .success-message.show {
        display: block;
        animation: fadeInUp 0.5s ease-out;
    }

    .success-message h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        font-weight: 300;
        letter-spacing: 2px;
    }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .form-card {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-button {
        padding: 1rem 3rem;
        font-size: 1rem;
    }
}
