/* Custom styles for VERIFY.AUCTION */
:root {
    --primary-color: #22010d;
    --primary-dark: #110006;
    --primary-light: #4d1a2b;
    --secondary-color: #A36550;
    --secondary-dark: #8b5441;
    --secondary-light: #b8795f;
    --accent-color: #16302B;
    --accent-dark: #0f221e;
    --accent-gold: #C9A96E;
    --success-color: #16302B;
    --warning-color: #A36550;
    --danger-color: #390517;
    --dark-color: #03110D;
    --light-color: #E0E0E0;
    --platinum: #f8f8f8;
    --silver: #d4d4d4;
    --text-primary: #03110D;
    --text-secondary: #16302B;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.8);
    --text-white: #ffffff;
    --text-gold: #C9A96E;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgba(3, 17, 13, 0.1);
    --shadow-medium: 0 4px 6px -1px rgba(3, 17, 13, 0.1);
    --shadow-large: 0 20px 25px -5px rgba(3, 17, 13, 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(3, 17, 13, 0.25);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    --gradient-luxury: linear-gradient(135deg, #0c2e1f 0%, #16302B 25%, #1a4332 50%, #2d5a3d 75%, #16302B 100%);
    --gradient-premium: linear-gradient(135deg, #16302B 0%, #1a4332 25%, #2d5a3d 50%, #16302B 75%, #0c2e1f 100%);
    --gradient-platinum: linear-gradient(135deg, #E0E0E0 0%, #d4d4d4 100%);
    --gradient-gold: linear-gradient(135deg, #C9A96E 0%, #b8795f 100%);
    --gradient-elegant: linear-gradient(135deg, #0c2e1f 0%, #16302B 20%, #1a4332 40%, #2d5a3d 60%, #16302B 80%, #0c2e1f 100%);
    --gradient-rolex: linear-gradient(135deg, #0f2e20 0%, #16302B 15%, #1e3f2f 30%, #2d5a3d 45%, #3a6b4a 60%, #2d5a3d 75%, #16302B 90%, #0f2e20 100%);
    
    /* Bootstrap Modal Variables */
    --bs-modal-bg: rgba(255, 255, 255, 0.95);
    --bs-modal-color: var(--text-primary);
    --bs-modal-border-color: rgba(255, 255, 255, 0.2);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 20px;
    --bs-modal-backdrop-bg: rgba(3, 17, 13, 0.8);
    --bs-modal-header-border-color: rgba(255, 255, 255, 0.1);
    --bs-modal-footer-border-color: rgba(255, 255, 255, 0.1);
    
    /* Additional purple color variable for enterprise plans */
    --purple-color: #6f42c1;
    --purple-dark: #5a2d91;
    --purple-light: #9f7aea;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-rolex);
    min-height: 100vh;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Gradient Background */
.gradient-bg {
    background: var(--gradient-rolex);
    color: var(--text-white);
    min-height: 100vh;
}

/* Navigation */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-gold) !important;
}

.nav-link.active {
    color: var(--accent-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-content {
    position: relative;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    filter: brightness(1.1);
}

.btn-primary-custom {
    background: var(--gradient-gold);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--dark-color) !important;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-premium);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
    background: linear-gradient(135deg, var(--accent-gold), var(--secondary-light));
    color: var(--dark-color) !important;
}

.btn-success-custom {
    background: var(--gradient-luxury);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--text-white) !important;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-premium);
}

.btn-success-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
    background: var(--gradient-premium);
    color: var(--text-white) !important;
}

.btn-premium-custom {
    background: linear-gradient(135deg, var(--purple-color, #6f42c1), #9f7aea);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    color: var(--text-white) !important;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.btn-premium-custom::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;
}

.btn-premium-custom:hover::before {
    left: 100%;
}

.btn-premium-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(111, 66, 193, 0.4);
    background: linear-gradient(135deg, #5a2d91, #9f7aea);
    color: var(--text-white) !important;
}

.btn-outline-primary {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-custom {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--text-white);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

/* Cards */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
}

.card-custom {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    transition: all 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-custom:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.card-header-custom {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border: none;
    font-weight: 600;
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-premium);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-color);
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.feature-icon::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: all 0.5s;
}

.feature-card:hover .feature-icon::before {
    left: 100%;
}

.feature-card h5 {
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stats-section {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 0;
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-success);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Forms */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control-custom {
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    background: white;
}

.form-control-custom:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-label-custom {
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

/* Verification Results */
.verification-result {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--success-color);
}

.verification-result.warning {
    border-left-color: var(--warning-color);
}

.verification-result.danger {
    border-left-color: var(--accent-color);
}

.verification-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.verification-badge.verified {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.verification-badge.unverified {
    background: rgba(231, 76, 60, 0.1);
    color: var(--accent-color);
}

.verification-badge.pending {
    background: rgba(243, 156, 18, 0.1);
    color: var(--warning-color);
}

/* Badge Styles */
.badge-verified {
    background: linear-gradient(135deg, var(--success-color), #38a169);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-pending {
    background: linear-gradient(135deg, var(--warning-color), #d69e2e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-rejected {
    background: linear-gradient(135deg, var(--danger-color), #e53e3e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

/* Enhanced Badge Styles */
.badge.badge-verified {
    background: linear-gradient(135deg, var(--success-color), #38a169);
    color: var(--text-white);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.badge.badge-pending {
    background: linear-gradient(135deg, var(--warning-color), #d69e2e);
    color: var(--text-white);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.badge.badge-rejected {
    background: linear-gradient(135deg, var(--danger-color), #e53e3e);
    color: var(--text-white);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

/* Profile Section */
.profile-header {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0;
    border-radius: 0 0 30px 30px;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: var(--shadow-lg);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0 auto 1rem;
}

/* Comments Section */
.comment-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.comment-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.score-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
}

.score-high {
    background: rgba(39, 174, 96, 0.1);
    color: var(--success-color);
}

.score-medium {
    background: rgba(243, 156, 18, 0.1);
    color: var(--warning-color);
}

.score-low {
    background: rgba(231, 76, 60, 0.1);
    color: var(--accent-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-custom {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-custom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-custom a:hover {
    color: white;
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
}

/* Loading States */
.loading-spinner {
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

.spinner-custom {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tooltips */
.tooltip-custom {
    position: relative;
    cursor: help;
}

.tooltip-custom::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-bg);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.tooltip-custom:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
}

/* Alert customizations */
.alert-success {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 161, 105, 0.1));
    border: 1px solid var(--success-color);
    color: #2f855a;
    border-radius: 15px;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.1), rgba(229, 62, 62, 0.1));
    border: 1px solid var(--danger-color);
    color: #c53030;
    border-radius: 15px;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(237, 137, 54, 0.1), rgba(214, 158, 46, 0.1));
    border: 1px solid var(--warning-color);
    color: #b7791f;
    border-radius: 15px;
}

/* Alert positioning and styling */
.alerts-container {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 1050;
    pointer-events: none;
    padding: 0 15px;
}

.alerts-container .container {
    pointer-events: auto;
    margin-bottom: 0.5rem;
}

.alert {
    position: relative;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-premium);
    border-radius: 15px;
    margin-bottom: 0;
    padding: 1rem 3rem 1rem 1.5rem;
    animation: slideInDown 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    backdrop-filter: blur(10px);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    backdrop-filter: blur(10px);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    backdrop-filter: blur(10px);
}

.alert-info {
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    backdrop-filter: blur(10px);
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: 2;
    padding: 0;
    background: none;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    color: currentColor;
}

.alert-dismissible .btn-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.alert-dismissible .btn-close i {
    font-size: 12px;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bootstrap Modal Styles */
.modal-backdrop {
    background-color: var(--bs-modal-backdrop-bg);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    color: var(--bs-modal-color);
    pointer-events: auto;
    background-color: var(--bs-modal-bg);
    background-clip: padding-box;
    border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
    border-radius: var(--bs-modal-border-radius);
    outline: 0;
    box-shadow: var(--shadow-premium);
}

.modal-header {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: var(--bs-modal-border-width) solid var(--bs-modal-header-border-color);
    border-top-left-radius: calc(var(--bs-modal-border-radius) - var(--bs-modal-border-width));
    border-top-right-radius: calc(var(--bs-modal-border-radius) - var(--bs-modal-border-width));
    background: var(--gradient-gold);
    color: var(--dark-color);
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 700;
    color: var(--dark-color);
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.5rem;
    color: var(--text-primary);
}

.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem 1.5rem;
    border-top: var(--bs-modal-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: calc(var(--bs-modal-border-radius) - var(--bs-modal-border-width));
    border-bottom-left-radius: calc(var(--bs-modal-border-radius) - var(--bs-modal-border-width));
    gap: 0.5rem;
}

.btn-close {
    position: relative;
    z-index: 2;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(201, 169, 110, 0.25);
}

/* Old compatibility styles - keeping some for backward compatibility */
.nav-bg {
    background: rgba(255, 255, 255, 0.95) !important;
}
