/* =====================================================
   ACCOMMODATION PROVIDER FORM - STYLES
   ===================================================== */

/* =====================================================
   PAGE HERO
   ===================================================== */
.page-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-base);
}

.navbar {
    padding: 0.75rem 0;
    transition: var(--transition-base);
    background: transparent;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23D4A847" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px 200px;
    opacity: 0.3;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(74, 0, 0, 0.6) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 2;
}

.page-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 1rem;
    padding-top: 80px;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.page-hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--gold);
}

/* =====================================================
   REGISTRATION SECTION
   ===================================================== */
.registration-section {
    background: var(--white-off);
    min-height: 100vh;
}

.form-header {
    margin-bottom: 3rem;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-gold);
}

.form-icon i {
    font-size: 2rem;
    color: var(--white);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.form-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =====================================================
   FORM STYLES
   ===================================================== */
.kshethra-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* Form Sections */
.form-section {
    padding: 2.5rem;
    border-bottom: 1px solid var(--white-off);
    background: var(--white);
    transition: var(--transition-base);
}

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

.form-section:nth-child(even) {
    background: var(--white-off);
}

/* Annadanam Section (Bank Details - Gold tint) */
.annadanam-section {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.03) 0%, rgba(139, 0, 0, 0.05) 100%);
}

.section-header-custom {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.section-number {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.section-header-custom h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin: 0;
    display: flex;
    align-items: center;
}

.section-header-custom h3 i {
    color: var(--gold);
}

/* Form Groups */
.form-group-custom {
    margin-bottom: 0;
}

.form-label-custom {
    display: flex;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.form-label-custom i {
    color: var(--gold);
    font-size: 1rem;
}

.form-control-custom,
.form-select-custom {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--black);
    background-color: var(--white);
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.form-control-custom:focus,
.form-select-custom:focus {
    outline: none;
    border-color: var(--gold);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 168, 71, 0.15);
}

.form-control-custom::placeholder {
    color: var(--gray-light);
    font-style: italic;
}

.form-control-custom textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23B8922F' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* File Upload */
.file-upload-wrapper {
    position: relative;
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
    background: var(--white);
}

.file-upload-wrapper:hover {
    border-color: var(--gold);
    background: rgba(212, 168, 71, 0.05);
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-upload-content i {
    font-size: 2.5rem;
    color: var(--gold);
}

.file-upload-content span {
    font-size: 1rem;
    color: var(--black);
    font-weight: 500;
}

.file-upload-content small {
    font-size: 0.8125rem;
    color: var(--gray);
}

/* Visit Info Badge */
.visit-info-badge {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(212, 168, 71, 0.1);
    border-left: 4px solid var(--gold);
    padding: 1rem 1.25rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 1.5rem;
}

.visit-info-badge i {
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.visit-info-badge span {
    font-size: 0.9375rem;
    color: var(--black);
    line-height: 2.5;
}

/* =====================================================
   SUBMIT SECTION
   ===================================================== */
.form-submit-section {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--black) 100%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.submit-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    max-width: 600px;
}

.submit-info i {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.submit-info p {
    font-size: 0.9375rem;
    color: var(--white);
    margin: 0;
    line-height: 1.6;
}

.submit-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-reset {
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
}

.btn-reset:hover {
    background: var(--white);
    color: var(--black);
}

.btn-submit-custom {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--black);
    background: var(--gold-gradient);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-gold);
}

.btn-submit-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 168, 71, 0.4);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--black);
    padding: var(--space-lg) 0 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-elegant);
    font-size: 1.125rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0;
}

.footer-description {
    font-size: 0.9375rem;
    color: var(--gray-light);
    margin-bottom: 0;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--gray-light);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9375rem;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact i {
    color: var(--gold);
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    margin-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991.98px) {
    .page-hero {
        height: 350px;
    }

    .page-hero-content {
        padding-top: 80px;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .form-section {
        padding: 2rem;
    }

    .form-title {
        font-size: 1.75rem;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767.98px) {
    .page-hero {
        height: 280px;
    }

    .page-hero-content {
        padding-top: 70px;
    }

    .page-hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .registration-section {
        padding: var(--space-lg) 0;
    }

    .form-header {
        margin-bottom: 2rem;
    }

    .form-icon {
        width: 60px;
        height: 60px;
    }

    .form-icon i {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-subtitle {
        font-size: 1rem;
    }

    .form-section {
        padding: 1.5rem;
    }

    .section-header-custom {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .section-header-custom h3 {
        font-size: 1.125rem;
    }

    .form-submit-section {
        padding: 1.5rem;
    }

    .submit-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-reset,
    .btn-submit-custom {
        width: 100%;
        justify-content: center;
    }

    .submit-info {
        flex-direction: column;
        text-align: center;
    }

    .submit-info i {
        align-self: center;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575.98px) {
    .page-hero {
        height: 240px;
    }

    .page-hero-content {
        padding-top: 70px;
    }

    .page-hero-title {
        font-size: 1.75rem;
    }

    .form-section {
        padding: 1.25rem;
    }

    .form-control-custom,
    .form-select-custom {
        padding: 0.75rem 0.875rem;
        font-size: 0.9375rem;
    }
}