/**
 * Landing Page - Enhanced Beautiful Design
 * VisoraPhoto - Elegant Minimalist
 */

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #ffffff;
    padding: clamp(5rem, 12vw, 8rem) 0 clamp(3rem, 8vw, 5rem);
    border-bottom: 3px solid #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}


.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: #ffffff;
    line-height: 1.1;
    text-transform: capitalize;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 300;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.hero-features .feature-item i {
    color: #fff;
}

/* Enhanced Search Card */
.search-card {
    background: #ffffff;
    border: 3px solid #1a1a1a;
    padding: clamp(2rem, 5vw, 3.5rem);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    transition: all 0.3s ease;
}

.search-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.filter-label {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-label i {
    font-size: 0.9em;
    opacity: 0.7;
}

/* Enhanced Form Controls */
.form-control, .form-select {
    border: 2px solid #dee2e6;
    border-radius: 0;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    width: 100%;
    min-height: 48px;
    font-family: 'Lato', sans-serif;
}

.form-control:hover, .form-select:hover {
    border-color: #1a1a1a;
    background: #fafafa;
}

.form-control:focus, .form-select:focus {
    border-color: #1a1a1a;
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(26, 26, 26, 0.1);
    background-color: #ffffff;
    outline: none;
}

.form-control::placeholder {
    color: #999;
    font-weight: 300;
}

/* Enhanced Buttons */
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 3px solid;
    padding: 0.875rem 2rem;
    font-size: 0.85rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    text-decoration: none;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
}

.btn-dark:hover {
    background-color: #2d2d2d;
    border-color: #2d2d2d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.btn-outline-dark {
    color: #1a1a1a;
    border-color: #1a1a1a;
    background-color: transparent;
}

.btn-outline-dark:hover {
    background-color: #1a1a1a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Results Header */
.results-header {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
    border-bottom: 2px solid #1a1a1a;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.results-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

/* Enhanced Photographer Cards - Perfect Alignment */
.photographer-card {
    border: 2px solid #e9ecef;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.photographer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photographer-card:hover::before {
    transform: scaleX(1);
}

.photographer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #1a1a1a;
    background: #ffffff;
}

.photographer-image-section {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* 1:1 Aspect Ratio */
    background: #2d2d2d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.photographer-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.photographer-card:hover .photographer-main-image {
    transform: scale(1.1);
}

.photographer-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    font-size: clamp(2rem, 6vw, 3.5rem);
    opacity: 0.95;
}

.availability-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem 1.25rem;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    border: 2px solid #ffffff;
    z-index: 5;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.availability-badge.available {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.availability-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.photographer-card:hover .availability-badge {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.photographer-avatar-small {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
    position: relative;
}

.photographer-avatar-small::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #e9ecef 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photographer-card:hover .photographer-avatar-small {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.photographer-card:hover .photographer-avatar-small::before {
    opacity: 1;
}

.photographer-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    letter-spacing: 0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.rating-stars {
    color: #1a1a1a;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.rating-stars .filled-star {
    color: #FFD700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.rating-stars .empty-star {
    color: #ddd;
}

.photographer-name {
    transition: color 0.3s ease;
}

.photographer-card:hover .photographer-name {
    color: #000000;
}

.stats-grid {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 1.25rem 0;
    margin: 1.5rem 0;
    background: #ffffff;
    width: 100%;
}

.stats-grid .row {
    margin: 0;
    display: flex;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #1a1a1a;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.7rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin: 0;
    display: block;
    line-height: 1.2;
}

.btn-view-profile {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    color: #ffffff;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
    width: 100%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-view-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-view-profile:hover::before {
    left: 100%;
}

.btn-view-profile:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-view-profile i {
    transition: transform 0.3s ease;
}

.btn-view-profile:hover i {
    transform: scale(1.2);
}

/* Enhanced Card Body */
.photographer-card .card-body {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
    position: relative;
}

.photographer-card .card-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}

.photographer-card .card-body p {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.photographer-card .card-body p i {
    color: #1a1a1a;
    margin-right: 0.5rem;
    width: 18px;
}

/* Gender Badge Styles */
.gender-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: default;
    margin-left: 0.75rem;
}

.gender-badge.gender-male {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-color: #357ABD;
    color: #ffffff;
}

.gender-badge.gender-female {
    background: linear-gradient(135deg, #E94B7D 0%, #D6366A 100%);
    border-color: #D6366A;
    color: #ffffff;
}

.gender-badge.gender-other {
    background: linear-gradient(135deg, #9B59B6 0%, #8E44AD 100%);
    border-color: #8E44AD;
    color: #ffffff;
}

.gender-badge.gender-default {
    background: linear-gradient(135deg, #95A5A6 0%, #7F8C8D 100%);
    border-color: #7F8C8D;
    color: #ffffff;
}

.photographer-card:hover .gender-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Enhanced Photographer Details */
.photographer-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.75rem 0;
    margin: 0.75rem 0;
    min-height: 75px;
}

.detail-item {
    display: flex;
    align-items: center;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 0.2rem 0;
    min-height: 1.3rem;
}

.detail-item i {
    color: #1a1a1a;
    margin-right: 0.75rem;
    width: 16px;
    text-align: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.detail-item span {
    flex: 1;
    line-height: 1.5;
}

.photographer-card:hover .detail-item {
    color: #1a1a1a;
}

.photographer-card:hover .detail-item i {
    transform: scale(1.1);
}

/* Enhanced No Results */
.no-results {
    text-align: center;
    padding: clamp(5rem, 12vw, 8rem) 2rem;
}

.no-results-icon {
    font-size: clamp(5rem, 12vw, 7rem);
    color: #d0d0d0;
    margin-bottom: 2rem;
    opacity: 0.5;
}

.no-results-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: 'Montserrat', sans-serif;
}

.no-results-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #6c757d;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: clamp(5rem, 12vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.cta-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    margin-top: 2rem;
}

.btn-cta-primary {
    background: #ffffff;
    border: 2px solid #ffffff;
    color: #1a1a1a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    margin-right: 1rem;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: #f0f0f0;
    color: #1a1a1a;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-3px);
    color: #ffffff;
}

/* Feature Cards */
.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #6c757d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1a1a1a 0%, #2d2d2d 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #1a1a1a;
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2.25rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(26, 26, 26, 0.3);
}

.feature-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.feature-text {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #6c757d;
    line-height: 1.7;
}

/* Gallery Grid Enhancements */
.gallery-grid {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    margin: 2rem 0;
    width: 100%;
}

@media (min-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 2.5rem;
    }
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
}

/* Section Spacing */
.section-spacing {
    margin: clamp(3rem, 8vw, 5rem) 0;
}

/* Enhanced Typography */
.text-muted {
    color: #6c757d !important;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading Overlay Enhancement */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

/* Exclude navbar area from loading overlay blocking */
.loading-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: transparent;
    pointer-events: none !important;
    z-index: 10001;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

/* Page Headers */
.page-header {
    margin-bottom: 3rem;
}

.page-header h1,
.page-header h2 {
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

/* Cards - Consistent Styling */
.card {
    border: 2px solid #e9ecef;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.card-body {
    padding: 2rem;
}

/* Tables - Enhanced Styling */
.table {
    margin-bottom: 0;
}

.table thead th {
    background: #1a1a1a;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 1rem;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.table tbody td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr:hover {
    background: #f8f9fa;
}

/* Badge Styling */
.badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
}

.badge-dark {
    background: #1a1a1a;
    color: #ffffff;
}

.badge-pending {
    background: #ffc107;
    color: #1a1a1a;
}

.badge-confirmed {
    background: #28a745;
    color: #ffffff;
}

.badge-completed {
    background: #1a1a1a;
    color: #ffffff;
}

.badge-cancelled {
    background: #dc3545;
    color: #ffffff;
}

/* Alert Enhancements */
.alert {
    border-left: 4px solid;
    border-radius: 0;
    padding: 1rem 1.5rem;
    font-weight: 400;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left-color: #ffc107;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left-color: #17a2b8;
}

/* Form Enhancements */
.form-control,
.form-select {
    font-family: 'Lato', sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: #1a1a1a;
    border-width: 3px;
}

/* Link Styling */
a {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #2d2d2d;
}

a.text-dark {
    color: #1a1a1a !important;
}

a.text-dark:hover {
    color: #2d2d2d !important;
}

/* Payment Method Cards */
.account-type-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    padding: 0;
    width: 100%;
    background: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.account-type-card:hover {
    border-color: #1a1a1a;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #fafafa;
}

.account-type-card.selected {
    border-color: #1a1a1a;
    background-color: #1a1a1a;
    color: #ffffff;
}

.account-type-card.selected label {
    color: #ffffff;
}

.account-type-card label {
    width: 100%;
    margin: 0;
    cursor: pointer;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .search-card {
        padding: 2rem 1.5rem;
        margin-top: -40px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        display: block;
        width: 100%;
        margin: 0.75rem 0;
    }
    
    .btn-cta-primary {
        margin-right: 0;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .gender-badge {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-left: 0.5rem;
    }
    
    .photographer-avatar-small {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .photographer-card .card-body {
        padding: 1.5rem;
    }
    
    .stats-grid {
        padding: 1.5rem 0;
        margin: 1.25rem 0;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .availability-badge {
        padding: 0.4rem 1rem;
        font-size: 0.65rem;
        top: 0.75rem;
        right: 0.75rem;
    }
}

/* Enhanced Academic Disclaimer Overlay */
.academic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: overlayFadeIn 0.5s ease-out;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.disclaimer-glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: cardSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardSlideUp {
    from { transform: translateY(30px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.disclaimer-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #666666);
}

.disclaimer-header i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
}

.disclaimer-header h2 {
    font-size: 1.75rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.disclaimer-header p {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.compliance-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.supervisor-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.supervisor-info .label {
    font-size: 0.7rem;
    color: #666;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.supervisor-info .value {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.access-control label {
    display: block;
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.input-wrapper {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.input-wrapper input {
    width: 100%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 3.5rem 1rem 1.5rem;
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 2px;
}

.input-wrapper input:focus {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.input-wrapper button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: #ffffff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-wrapper button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.input-wrapper button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.error-msg {
    color: #ff6b6b;
    font-size: 0.8rem;
    margin-top: 10px;
    min-height: 20px;
    font-weight: 500;
}

.disclaimer-footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: #555;
    letter-spacing: 1px;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .disclaimer-glass-card {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .disclaimer-header i {
        font-size: 2.5rem;
    }
    
    .disclaimer-header h2 {
        font-size: 1.5rem;
    }
}

