/* Shared forms + page container */
.page-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
    background: linear-gradient(135deg, rgba(10, 26, 46, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    min-height: calc(100vh - 80px);
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.form-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 248, 245, 0.98) 100%);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--gold) 0%, 
        var(--gold-light) 50%, 
        var(--gold) 100%);
    z-index: 1;
}

.page-title {
    font-size: 2.5rem;
    color: var(--navy-blue);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.page-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Form Styles */
.contact-form {
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.form-section:last-of-type {
    border-bottom: none;
}

.section-title {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-left: 5px solid var(--gold);
    padding-left: 1.25rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
    letter-spacing: 0.5px;
    position: relative;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    border-radius: 5px 0 0 5px;
}

.section-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--navy-blue);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    padding-left: 0.5rem;
}

.form-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.6;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy-blue);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 
        0 0 0 4px var(--gold-glow),
        0 4px 12px rgba(212, 175, 55, 0.15),
        inset 0 1px 2px rgba(212, 175, 55, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    resize: vertical;
}

/* Radio Button Styles */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.radio-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.radio-label:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    transform: translateX(4px);
}

.radio-label:hover::before {
    width: 100%;
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--gold);
    background: var(--gold);
    box-shadow: 
        0 0 0 4px var(--gold-glow),
        0 2px 8px rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.radio-label input[type="radio"]:checked ~ .radio-text {
    color: var(--navy-blue);
    font-weight: 600;
}

.radio-label:has(input[type="radio"]:checked) {
    border-color: var(--gold);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.radio-text {
    flex: 1;
    transition: color 0.3s ease;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.checkbox-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    transition: width 0.3s ease;
}

.checkbox-label:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    transform: translateX(4px);
}

.checkbox-label:hover::before {
    width: 100%;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    margin-right: 1rem;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    background: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 
        0 0 0 4px var(--gold-glow),
        0 2px 8px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

.checkbox-label:has(input[type="checkbox"]:checked) {
    border-color: var(--gold);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-text {
    color: var(--navy-blue);
    font-weight: 600;
}

.checkbox-text {
    flex: 1;
    transition: color 0.3s ease;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-blue);
    border: 2px solid var(--gold-dark);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        var(--gold-shadow),
        0 4px 15px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    margin-top: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.5),
        0 4px 15px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
    border-color: var(--gold);
}

.submit-button:active {
    transform: translateY(-1px) scale(1);
}

/* Success / Error Messages */
.success-message {
    background: var(--success-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

.error-message {
    background: #e74c3c;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
}

