@import url('/css/theme.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Navigation Header */
.page-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 0 rgba(212, 175, 55, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header-logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.header-logo:hover::after {
    width: 100%;
}

.header-logo .logo-text {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header-logo .logo-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.header-back:hover {
    color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--border-subtle);
}

.header-back svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.header-back:hover svg {
    transform: translateX(-4px);
}

/* Main Page Container */
.page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.page__header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.page__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.page__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.page__subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

/* Form Styles */
.form {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.6;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group:last-child {
    margin-bottom: 0;
}

.label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
    position: relative;
}

.label::after {
    content: ' *';
    color: #ef4444;
    font-weight: 700;
}

/* Input Fields */
.input,
.textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.input:hover,
.textarea:hover {
    border-color: var(--border-gold);
    background: rgba(15, 15, 15, 0.8);
}

.input:focus,
.textarea:focus {
    border-color: var(--gold);
    background: rgba(15, 15, 15, 0.9);
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.input::placeholder,
.textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* Phone Input Wrapper */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.country-code {
    position: absolute;
    left: 1.25rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 2;
    pointer-events: none;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.phone-input {
    padding-left: 3.5rem !important;
}

/* Select Dropdown */
.select-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.select-wrapper::before {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--gold);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.select-wrapper:focus-within::before {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: var(--gold-light);
}

.select-wrapper select {
    cursor: pointer;
    appearance: none;
    background-image: none;
    padding-right: 3.5rem;
    position: relative;
    z-index: 1;
}

.select-wrapper select:focus {
    background-image: none;
}

.select-wrapper select option {
    background: var(--dark-card);
    color: var(--text-primary);
    padding: 0.875rem 1.25rem;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.select-wrapper select option:hover,
.select-wrapper select option:focus {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
}

.select-wrapper select option:checked {
    background: rgba(212, 175, 55, 0.25);
    color: var(--gold);
    font-weight: 600;
}

.select-wrapper select option:first-child {
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.7;
}

.select-wrapper select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Enhanced dropdown styling on open */
.select-wrapper select:active,
.select-wrapper select:focus {
    box-shadow: 
        0 0 0 3px rgba(212, 175, 55, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 8px 24px rgba(212, 175, 55, 0.15);
}

/* Button */
button[type="submit"] {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: 2px solid var(--gold);
    border-radius: 12px;
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 16px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

button[type="submit"]::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;
}

button[type="submit"]:hover::before {
    left: 100%;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 24px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #E8D896 0%, var(--gold) 100%);
}

button[type="submit"]:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 12px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

button[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Loading State */
.input:disabled,
.textarea:disabled,
select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(15, 15, 15, 0.4);
}

/* Error States */
.input:invalid:not(:placeholder-shown),
.textarea:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.input:valid:not(:placeholder-shown),
.textarea:valid:not(:placeholder-shown),
select:valid:not(:placeholder-shown) {
    border-color: rgba(16, 185, 129, 0.5);
}

/* Select Loading State */
select option:first-child {
    color: var(--text-secondary);
    font-style: italic;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 1rem;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--gold);
    border-radius: 2px;
}

/* Grid Layout for Fields */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-group.full-width {
        grid-column: 1 / -1;
    }
}

/* Success/Error Messages */
.message {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    min-width: 320px;
    max-width: 500px;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.message.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.message.success {
    border-left: 4px solid #10b981;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.1), rgba(26, 26, 26, 0.98));
}

.message.error {
    border-left: 4px solid #ef4444;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.1), rgba(26, 26, 26, 0.98));
}

.message::before {
    font-size: 1.5rem;
    font-weight: bold;
}

.message.success::before {
    content: '✓';
    color: #10b981;
}

.message.error::before {
    content: '✕';
    color: #ef4444;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.show {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
    border: 2px solid var(--border-subtle);
    padding: 3rem 4rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.loading-overlay.show .loading-content {
    transform: scale(1);
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-subtle);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.loading-subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Responsive Design */

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .page {
        margin: 2.5rem auto;
        padding: 0 1.5rem;
        max-width: 800px;
    }
    
    .page__header {
        padding: 2.5rem 2rem;
        margin-bottom: 2rem;
    }
    
    .page__title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .page__subtitle {
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    }
    
    .form {
        padding: 2.5rem 2rem;
    }
    
    .form-group {
        margin-bottom: 1.75rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .message {
        min-width: 300px;
        font-size: 0.9rem;
        padding: 1.15rem 1.75rem;
    }
    
    .loading-content {
        padding: 2.5rem 3rem;
        margin: 0 1.5rem;
    }
}

/* Mobile Landscape (576px - 767px) */
@media (max-width: 767px) {
    .header-container {
        padding: 0 1.25rem;
    }
    
    .header-logo .logo-text {
        font-size: 1.3rem;
    }
    
    .header-logo .logo-tagline {
        font-size: 0.7rem;
    }
    
    .header-back {
        font-size: 0.9rem;
        padding: 0.45rem 0.9rem;
    }
    
    .page {
        margin: 2rem auto;
        padding: 0 1.25rem;
    }
    
    .page__header {
        padding: 2rem 1.5rem;
        margin-bottom: 1.75rem;
    }
    
    .page__title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    
    .page__subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.05rem);
    }
    
    .form {
        padding: 2rem 1.5rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        padding-left: 0.875rem;
    }
    
    .section-title::before {
        width: 3px;
        height: 20px;
    }
    
    .label {
        font-size: 0.95rem;
    }
    
    .input,
    .textarea,
    select {
        padding: 0.95rem 1.15rem;
        font-size: 0.95rem;
    }
    
    .country-code {
        left: 1.15rem;
        font-size: 0.9rem;
    }
    
    .phone-input {
        padding-left: 3.25rem !important;
    }
    
    .textarea {
        min-height: 110px;
    }
    
    button[type="submit"] {
        padding: 1.15rem 1.75rem;
        font-size: 1.05rem;
    }
    
    .message {
        min-width: 280px;
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
        left: 1.25rem;
        right: 1.25rem;
        transform: translateX(0) translateY(-100px);
    }
    
    .message.show {
        transform: translateX(0) translateY(0);
    }
    
    .loading-content {
        padding: 2rem 2.5rem;
        margin: 0 1.25rem;
    }
}

/* Mobile Portrait (320px - 575px) */
@media (max-width: 575px) {
    .page-header {
        padding: 1rem 0;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .header-logo .logo-text {
        font-size: 1.25rem;
    }
    
    .header-logo .logo-tagline {
        font-size: 0.65rem;
    }
    
    .header-back {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .header-back span {
        display: none;
    }
    
    .page {
        margin: 1.5rem auto;
        padding: 0 1rem;
    }
    
    .page__header {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .page__title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 0.75rem;
    }
    
    .page__subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }
    
    .form {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .form-section {
        margin-bottom: 1.75rem;
        padding-bottom: 1.75rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
        padding-left: 0.75rem;
    }
    
    .section-title::before {
        width: 3px;
        height: 18px;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-grid {
        gap: 1.25rem;
    }
    
    .label {
        font-size: 0.9rem;
        margin-bottom: 0.65rem;
    }
    
    .input,
    .textarea,
    select {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .country-code {
        left: 1rem;
        font-size: 0.85rem;
    }
    
    .phone-input {
        padding-left: 3rem !important;
    }
    
    .textarea {
        min-height: 100px;
    }
    
    .select-wrapper::before {
        right: 1rem;
    }
    
    .select-wrapper select {
        padding-right: 3rem;
    }
    
    button[type="submit"] {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        margin-top: 1.75rem;
    }
    
    .message {
        min-width: auto;
        font-size: 0.85rem;
        padding: 0.9rem 1.25rem;
        left: 1rem;
        right: 1rem;
    }
    
    .loading-content {
        padding: 1.75rem 2rem;
        margin: 0 1rem;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
        margin-bottom: 1.25rem;
    }
    
    .loading-text {
        font-size: 1rem;
    }
    
    .loading-subtext {
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile (max-width: 375px) */
@media (max-width: 375px) {
    .header-container {
        padding: 0 0.875rem;
    }
    
    .header-logo .logo-text {
        font-size: 1.1rem;
    }
    
    .header-logo .logo-tagline {
        display: none;
    }
    
    .page {
        margin: 1.25rem auto;
        padding: 0 0.875rem;
    }
    
    .page__header {
        padding: 1.25rem 0.875rem;
    }
    
    .page__title {
        font-size: 1.4rem;
    }
    
    .page__subtitle {
        font-size: 0.85rem;
    }
    
    .form {
        padding: 1.25rem 0.875rem;
        border-radius: 14px;
    }
    
    .form-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        padding-left: 0.65rem;
    }
    
    .form-group {
        margin-bottom: 1.15rem;
    }
    
    .label {
        font-size: 0.85rem;
    }
    
    .input,
    .textarea,
    select {
        padding: 0.8rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .country-code {
        left: 0.9rem;
        font-size: 0.8rem;
    }
    
    .phone-input {
        padding-left: 2.75rem !important;
    }
    
    .textarea {
        min-height: 90px;
    }
    
    button[type="submit"] {
        padding: 0.9rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .message {
        padding: 0.8rem 1.15rem;
        font-size: 0.8rem;
        left: 0.875rem;
        right: 0.875rem;
    }
    
    .loading-content {
        padding: 1.5rem 1.75rem;
        margin: 0 0.875rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form {
    animation: fadeIn 0.6s ease-out;
}

.form-group {
    animation: fadeIn 0.6s ease-out;
    animation-fill-mode: both;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }
.form-group:nth-child(5) { animation-delay: 0.5s; }
.form-group:nth-child(6) { animation-delay: 0.6s; }
.form-group:nth-child(7) { animation-delay: 0.7s; }
.form-group:nth-child(8) { animation-delay: 0.8s; }
.form-group:nth-child(9) { animation-delay: 0.9s; }

/* Select Dropdown Styling Enhancement */
select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23E8D896' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* Enhanced Focus States */
.input:focus-visible,
.textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Required Field Indicator */
.required-indicator {
    color: #ef4444;
    margin-left: 0.25rem;
    font-weight: 700;
}

