/* Custom CSS for UK License Verification Website - Bold Modern Design */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #1f2937;
    --light-color: #f9fafb;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Header Styles */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.site-header:hover {
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 800;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-brand:hover {
    transform: translateY(-1px);
}

.logo-img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    height: 32px !important;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.brand-text {
    color: #1e293b;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Override brand-text in sidebar */
.admin-sidebar .brand-text {
    color: #ffffff !important;
}

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.4rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    color: #475569 !important;
    border-radius: 8px;
    margin: 0 0.15rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.3rem;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.08);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(102, 126, 234, 0.12);
    font-weight: 700;
}

.btn-verify {
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    padding: 0.5rem 1.5rem !important;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-verify::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.5s ease;
}

.btn-verify:hover::before {
    left: 100%;
}

.btn-verify:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    color: #ffffff !important;
}

.navbar-toggler {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 41, 55, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 0 10px;
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.6;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    color: var(--primary-color);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.hero-stats .stat-item {
    text-align: left;
}

.hero-section .hero-stats .stat-item .stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #ffffff !important;
}

.hero-section .hero-stats .stat-item .stat-label {
    font-size: 0.9rem;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-logo-main {
    width: 350px;
    height: 350px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

.float-1 {
    top: 10%;
    left: 10%;
    animation: float1 8s ease-in-out infinite;
}

.float-2 {
    top: 60%;
    right: 15%;
    animation: float2 10s ease-in-out infinite;
}

.float-3 {
    bottom: 20%;
    left: 20%;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, -30px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-25px, 25px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -20px) rotate(180deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    padding: 80px 0;
    margin-top: -20px;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(102, 126, 234, 0.1);
}

.stat-card-modern {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.stat-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.35);
    transition: all 0.4s ease;
    position: relative;
}

.stat-card-modern:hover .stat-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.stat-number-modern {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-text-modern {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* Section Headers */
.section-header {
    margin-bottom: 4.5rem;
    text-align: center !important;
    display: block;
    width: 100%;
    padding: 0;
    position: relative;
}

.section-header.text-center {
    text-align: center !important;
}

.section-header .section-badge {
    display: block;
    padding: 0.75rem 1.8rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 auto 1.5rem auto;
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.12);
    text-align: center !important;
    width: fit-content;
    position: relative;
}

.section-header .section-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #1e293b;
    margin: 0 auto 1.5rem auto;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-align: center !important;
    width: 100%;
    max-width: 850px;
    padding: 0;
    display: block;
    clear: both;
}

.section-header h2.section-title {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    float: none;
}

.section-header .section-description {
    font-size: 1.15rem;
    color: #64748b;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    text-align: center !important;
    padding: 0 20px;
    width: 100%;
    display: block;
    clear: both;
}

.section-header p.section-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    float: none;
}

/* Features Section Modern */
.features-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.features-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

.feature-card-modern {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.feature-card-modern:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--gradient-primary);
    color: white;
}

.feature-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-card-modern p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: auto;
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--secondary-color);
    gap: 14px;
}

.feature-link:hover i {
    transform: translateX(4px);
}

/* How It Works Modern */
.how-it-works-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
    overflow: visible;
}

.how-it-works-modern .row {
    overflow: visible;
}

.how-it-works-modern .col-lg-4 {
    overflow: visible;
}

.how-it-works-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

.step-card-modern {
    text-align: center;
    padding: 50px 35px 40px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.08);
    overflow: visible;
    margin-top: 30px;
}

.step-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step-card-modern:hover::after {
    transform: scaleX(1);
}

.step-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.2);
}

.step-number-modern {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.45);
    border: 4px solid white;
    transition: all 0.4s ease;
    z-index: 2;
}

.step-card-modern:hover .step-number-modern {
    transform: translateX(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

.step-icon-modern {
    width: 110px;
    height: 110px;
    margin: 35px auto 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
    position: relative;
}

.step-icon-modern::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card-modern:hover .step-icon-modern::before {
    opacity: 1;
}

.step-card-modern:hover .step-icon-modern {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.step-card-modern h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.step-card-modern p {
    color: #6b7280;
    line-height: 1.7;
}

/* What You Get Modern */
.what-you-get-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    position: relative;
}

.what-you-get-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
}

.info-list-modern {
    margin-top: 2.5rem;
}

.info-item-modern {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.08);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.08);
    position: relative;
    overflow: hidden;
}

.info-item-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.info-item-modern:hover::before {
    transform: scaleY(1);
}

.info-item-modern:hover {
    transform: translateX(12px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.info-icon-modern {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
    transition: all 0.4s ease;
}

.info-item-modern:hover .info-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.info-item-modern h5 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--dark-color);
    letter-spacing: -0.01em;
}

.info-item-modern p {
    color: #64748b;
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.info-visual-modern {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.4s ease;
}

.visual-card:hover {
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2);
    transform: translateY(-5px);
}

.visual-header {
    background: #f9fafb;
    padding: 15px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.visual-dots {
    display: flex;
    gap: 8px;
}

.visual-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.visual-dots span:nth-child(1) { background: #ef4444; }
.visual-dots span:nth-child(2) { background: #f59e0b; }
.visual-dots span:nth-child(3) { background: #10b981; }

.visual-content {
    padding: 40px;
}

.visual-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.visual-info {
    margin-top: 20px;
}

.visual-line {
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    margin-bottom: 15px;
    width: 100%;
}

.visual-line.short {
    width: 60%;
}

/* Trust Section Modern */
.trust-section-modern {
    padding: 100px 0;
}

.trust-card-modern {
    text-align: center;
    padding: 40px 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.trust-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.trust-icon-modern {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.12) 0%, rgba(118, 75, 162, 0.12) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    position: relative;
}

.trust-icon-modern::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-card-modern:hover .trust-icon-modern::before {
    opacity: 1;
}

.trust-card-modern:hover .trust-icon-modern {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.trust-card-modern h5 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-color);
    letter-spacing: -0.01em;
}

.trust-card-modern p {
    color: #64748b;
    line-height: 1.75;
    margin: 0;
    font-size: 1.05rem;
}

/* CTA Section Modern */
.cta-section-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-card-modern {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
    line-height: 1.7;
}

.btn-cta-primary {
    background: white !important;
    color: var(--primary-color) !important;
    border: none;
    padding: 1.1rem 3rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    font-size: 1.15rem;
}

.btn-cta-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.08);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    color: var(--primary-color) !important;
    background: white !important;
}

.btn-cta-primary:hover i {
    color: var(--primary-color) !important;
}

.btn-cta-primary i,
.btn-cta-primary span {
    position: relative;
    z-index: 1;
    color: var(--primary-color) !important;
}

/* FAQ Section Modern */
.faq-section-modern {
    padding: 100px 0;
    background: white;
}

.accordion-modern .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.accordion-modern .accordion-button {
    background: #f9fafb;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    box-shadow: none;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: white;
    box-shadow: none;
}

.accordion-modern .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-modern .accordion-body {
    padding: 25px;
    background: white;
    color: #6b7280;
    line-height: 1.7;
}

/* Feature Cards */
.features-section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Step Cards */
.how-it-works {
    padding: 80px 0;
}

.step-card {
    text-align: center;
    padding: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.step-card h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    align-items: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.12)"/></svg>');
    opacity: 0.8;
    animation: backgroundMove 25s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.page-header .container {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
}

.page-header h1 i {
    font-size: 2.2rem;
    margin-right: 0.75rem;
    opacity: 0.95;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.2));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.page-header .lead {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 10px rgba(0,0,0,0.1);
    max-width: 600px;
    margin-bottom: 0;
}

@keyframes backgroundMove {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -30px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Cards */
.content-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.08);
    margin-bottom: 2rem;
}

.content-card h2 {
    color: #1e293b;
    font-weight: 800;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.content-card h3 {
    color: #334155;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-card h4 {
    color: #475569;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-card ul {
    padding-left: 1.5rem;
}

.content-card ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.content-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.content-card .bg-primary.bg-opacity-10.rounded-circle {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
    min-height: 70px !important;
    max-width: 70px !important;
    max-height: 70px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    flex-shrink: 0;
}

.content-card .bg-primary.bg-opacity-10.rounded-circle i {
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 1;
}

/* Verification Form */
.verification-form-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.verification-form .form-control-lg {
    padding: 15px 20px;
    font-size: 1.1rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.verification-form .form-control-lg:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Verification Results - Profile Style */
.verification-result-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
    animation: fadeInUp 0.5s ease;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verification-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px 40px;
    color: white;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
}

.verification-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.verification-header-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.verification-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.verification-title i {
    font-size: 1.8rem;
}

.status-badge-large {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 0 4px rgba(255,255,255,0.4), inset 0 2px 10px rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: statusPulse 2s ease-in-out infinite;
    position: relative;
    z-index: 10;
    min-width: 140px;
    justify-content: center;
}

.status-badge-large i {
    font-size: 1.3rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.status-badge-large::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    z-index: -1;
    animation: statusGlow 2s ease-in-out infinite;
}

.status-valid {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3), 0 0 0 3px rgba(255,255,255,0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4), 0 0 0 4px rgba(255,255,255,0.4);
    }
}

@keyframes statusGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.status-expired {
    background: rgba(245, 158, 11, 0.95);
    color: white;
}

.status-suspended {
    background: rgba(239, 68, 68, 0.95);
    color: white;
}

.status-revoked {
    background: rgba(107, 114, 128, 0.95);
    color: white;
}

.profile-display {
    padding: 40px;
    margin-top: 0;
    max-height: none;
    overflow: visible;
}

.verification-result-card {
    max-height: none;
    overflow: visible;
}

.license-card-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.holder-photo-container {
    position: relative;
    align-self: start;
}

.holder-photo {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 4px solid white;
    background: white;
}

.holder-photo-placeholder {
    width: 100%;
    max-width: 280px;
    height: 350px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.holder-photo-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.1) 10px,
        rgba(255,255,255,0.1) 20px
    );
    animation: slide 3s linear infinite;
}

@keyframes slide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.holder-photo-placeholder i {
    font-size: 5rem;
    color: #9ca3af;
    position: relative;
    z-index: 1;
}

.holder-photo-placeholder p {
    margin-top: 15px;
    color: #6b7280;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
}

.profile-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.license-number-display {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 15px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-top: 15px;
}

.license-number-display .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.license-number-display .value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.info-section {
    padding: 25px 0;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.info-section:last-child {
    border-bottom: none;
}

.info-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25px;
    width: 4px;
    height: calc(100% - 50px);
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-section:hover::before {
    opacity: 1;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 15px;
}

.section-title i {
    font-size: 1.4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding-left: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f1f5f9;
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.info-label {
    font-weight: 700;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.info-value {
    font-size: 1.05rem;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.5;
}

.info-value.address {
    line-height: 1.8;
    color: #475569;
}

.license-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding-left: 15px;
}

.license-detail-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.license-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.license-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.license-detail-card:hover::before {
    transform: scaleX(1);
}

.license-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.license-detail-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* UK License Field Formatting */
.uk-license-fields {
    padding-left: 15px;
}

.uk-field-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.uk-field-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.uk-field-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.uk-field-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.uk-field-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.uk-field-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.5;
}

.license-number-highlight {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.categories-display {
    font-family: 'Courier New', monospace;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.categories-detailed {
    margin-top: 10px;
    padding: 10px;
    background: white;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #475569;
    border: 1px solid #e2e8f0;
}

/* Signature Display */
.signature-display {
    padding: 15px;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    text-align: center;
    margin-top: 10px;
}

.signature-image {
    max-width: 100%;
    max-height: 120px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: white;
    padding: 8px;
    display: inline-block;
}

/* Endorsement and Restriction Items */
.endorsement-item {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.endorsement-item .uk-field-number {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.restriction-item {
    border-left-color: #ef4444;
    background: #fef2f2;
}

.restriction-item .uk-field-number {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Verification Metadata */
.verification-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.meta-item i {
    font-size: 1.1rem;
}

.meta-label {
    font-weight: 600;
    color: #64748b;
}

.meta-value {
    font-weight: 700;
    color: var(--dark-color);
}

/* Enhanced Address Display */
.uk-field-value.address {
    line-height: 1.8;
    color: #475569;
    font-size: 1rem;
}

/* Photo and Signature Container Enhancement */
.holder-photo-container {
    position: relative;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.holder-photo-container::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    opacity: 0.3;
}

/* License Summary Card */
.license-summary-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.summary-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.summary-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

.summary-content {
    flex: 1;
    min-width: 0;
}

.summary-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 5px;
}

.summary-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    word-break: break-word;
}

.summary-value.license-num {
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Signature Preview */
.signature-preview {
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
    text-align: center;
}

.signature-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.signature-thumb {
    max-width: 100%;
    max-height: 80px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: white;
    padding: 5px;
}

/* Enhanced License Card Layout */
.license-card-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    margin-bottom: 30px;
    align-items: start;
}

/* Better spacing for all sections */
.info-section {
    padding: 30px 0;
    border-bottom: 2px solid #e5e7eb;
}

.info-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Improved field items */
.uk-field-item {
    margin-bottom: 18px;
}

.uk-field-item:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .license-card-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .holder-photo,
    .holder-photo-placeholder {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .holder-photo-container::after {
        display: none;
    }
    
    .info-grid,
    .license-details-grid {
        grid-template-columns: 1fr;
    }
    
    .verification-header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .uk-field-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .uk-field-number {
        align-self: flex-start;
    }
    
    .verification-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .profile-display {
        padding: 25px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .license-card-layout {
        grid-template-columns: 1fr;
    }
    
    .signature-preview {
        margin-top: 15px;
    }
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: white;
    margin-top: auto;
}

.footer-main {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.footer-brand h5 {
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-brand p {
    line-height: 1.8;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    border-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact span {
    color: rgba(255,255,255,0.7);
}

.footer-bottom {
    background: #111827;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links li {
    display: inline;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.text-white-50 {
    color: rgba(255,255,255,0.5) !important;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
    }
}

/* Admin Styles */
/* Admin Panel Styles - Sidebar Layout */
.admin-body {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* Admin Button Styles */
.admin-body .btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.admin-body .btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.admin-body .btn-outline-primary:hover i {
    color: white !important;
}

.admin-body .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.admin-body .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
    color: white;
}

.admin-body .btn-secondary {
    background: #64748b;
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.admin-body .btn-secondary:hover {
    background: #475569;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(100, 116, 139, 0.4);
}

/* Sidebar Styles */
.admin-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(102, 126, 234, 0.2);
    overflow: hidden;
}

.admin-sidebar.sidebar-mini {
    width: 80px;
}

.admin-sidebar.sidebar-mini .sidebar-text,
.admin-sidebar.sidebar-mini .nav-text,
.admin-sidebar.sidebar-mini .logout-text,
.admin-sidebar.sidebar-mini .sidebar-user-details {
    opacity: 0;
    width: 0;
    overflow: hidden;
    white-space: nowrap;
}

.admin-sidebar.sidebar-mini .nav-link {
    justify-content: center;
    padding: 0.875rem;
    gap: 0;
}

.admin-sidebar.sidebar-mini .nav-link i {
    margin-right: 0;
    width: 20px;
    min-width: 20px;
    height: 20px;
    font-size: 1.125rem;
}

.admin-sidebar.sidebar-mini .sidebar-brand {
    justify-content: center;
    width: 100%;
    position: relative;
}

.admin-sidebar.sidebar-mini .sidebar-logo {
    margin-right: 0 !important;
    margin: 0 auto;
}

.admin-sidebar.sidebar-mini .sidebar-header {
    padding: 1rem 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    position: relative;
}

.admin-sidebar.sidebar-mini .user-info {
    justify-content: center;
    padding: 0.75rem;
}

.admin-sidebar.sidebar-mini .user-avatar {
    margin-right: 0;
}

.admin-sidebar.sidebar-mini .logout-btn {
    padding: 0.75rem;
    justify-content: center;
}

.admin-sidebar.sidebar-mini .logout-btn i {
    margin-right: 0;
}

.sidebar-header {
    padding: 1.25rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.05);
    position: relative;
    min-height: 60px;
}

.sidebar-header .sidebar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    justify-content: center;
    width: auto;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #ffffff !important;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.sidebar-brand,
.sidebar-brand *,
.sidebar-brand span,
.sidebar-brand .brand-text {
    color: #ffffff !important;
    fill: #ffffff !important;
}

.sidebar-brand:hover {
    color: #ffffff !important;
    transform: translate(-50%, -50%) translateX(2px);
    opacity: 0.9;
}

.sidebar-brand:hover *,
.sidebar-brand:hover span,
.sidebar-brand:hover .brand-text {
    color: #ffffff !important;
}

.sidebar-brand img,
.admin-sidebar .sidebar-brand img {
    filter: none !important;
    transition: all 0.3s ease;
    opacity: 1 !important;
    height: 32px;
    width: auto;
    display: block;
}

.sidebar-brand .sidebar-logo {
    margin-right: 0.5rem !important;
}

.sidebar-brand:hover img {
    opacity: 0.95 !important;
    transform: scale(1.05);
}

/* Force white for all sidebar brand elements */
.admin-sidebar .sidebar-brand,
.admin-sidebar .sidebar-brand span,
.admin-sidebar .sidebar-brand .brand-text {
    color: #ffffff !important;
}

.sidebar-toggle-close {
    background: none;
    border: none;
    color: #ffffff !important;
    font-size: 1.125rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar-toggle-close:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
    opacity: 1;
}

.sidebar-collapse-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff !important;
    font-size: 1rem;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
}

.sidebar-collapse-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    transform: translateY(-50%) scale(1.1);
}

.sidebar-collapse-toggle i {
    transition: transform 0.3s ease;
}


.sidebar-collapse-toggle-desktop {
    background: #f1f5f9;
    border: none;
    color: #475569;
    font-size: 1.125rem;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-collapse-toggle-desktop:hover {
    background: #e2e8f0;
    color: #667eea;
    transform: scale(1.05);
}

.sidebar-collapse-toggle-desktop:active {
    transform: scale(0.95);
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.75rem 0;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(102, 126, 234, 0.3);
    border-radius: 2px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 126, 234, 0.5);
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu .nav-item {
    margin: 0.25rem 0.75rem;
}

.nav-menu .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 0.875rem;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.875rem;
    position: relative;
    letter-spacing: -0.1px;
    margin: 0.125rem 0;
    gap: 0.75rem;
}

.nav-menu .nav-link i {
    font-size: 1.125rem;
    width: 20px;
    min-width: 20px;
    height: 20px;
    margin-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.nav-menu .nav-link .nav-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

.nav-menu .nav-link:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #ffffff !important;
    transform: translateX(4px);
}

.nav-menu .nav-link:hover i {
    color: #ffffff !important;
    transform: scale(1.1);
}

.nav-menu .nav-link.active {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    font-weight: 600;
}

.nav-menu .nav-link.active i {
    color: #ffffff !important;
    transform: scale(1.05);
}

.nav-menu .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 70%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 4px 4px 0;
    box-shadow: 0 0 8px rgba(102, 126, 234, 0.5);
}

.sidebar-footer {
    padding: 1.25rem;
    border-top: 1px solid rgba(102, 126, 234, 0.15);
    background: rgba(15, 23, 42, 0.5);
}

.user-info {
    display: flex;
    align-items: center;
    padding: 0.875rem;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.user-info:hover {
    background: rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.375rem;
    margin-right: 0.625rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(255,255,255,0.2);
}

.user-details {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-weight: 600;
    color: #ffffff !important;
    font-size: 0.8125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.1px;
}

.user-role {
    font-size: 0.6875rem;
    color: #ffffff !important;
    margin-top: 0.125rem;
    font-weight: 500;
    opacity: 0.85;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.25);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    border-color: rgba(239, 68, 68, 0.4);
}

.logout-btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Sidebar Overlay (Mobile) */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content Wrapper */
.admin-wrapper {
    margin-left: 280px;
    min-height: 100vh;
    transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-wrapper.sidebar-mini {
    margin-left: 80px;
}

/* Top Header */
.admin-top-header {
    background: #ffffff;
    padding: 0.875rem 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sidebar-toggle {
    background: none;
    border: none;
    font-size: 1.375rem;
    color: #475569;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.sidebar-toggle:hover {
    background: #f1f5f9;
    color: #667eea;
}

.page-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.5px;
    font-size: 1.25rem;
}

.user-dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.875rem;
    background: #f8fafc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-weight: 500;
    font-size: 0.875rem;
}

.user-dropdown-toggle:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #334155;
}

.user-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

.admin-main {
    padding: 1.5rem;
    font-size: 0.875rem;
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
        box-shadow: 4px 0 24px rgba(0,0,0,0.2);
    }
    
    .admin-sidebar.sidebar-open {
        transform: translateX(0);
    }
    
    .admin-wrapper {
        margin-left: 0;
    }
    
    .admin-main {
        padding: 1.5rem 1rem;
    }
    
    .admin-top-header {
        padding: 1rem;
    }
    
    .sidebar-header {
        padding: 1.25rem;
    }
    
    .sidebar-footer {
        padding: 1.25rem;
    }
    
    .nav-menu .nav-item {
        margin: 0.25rem 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .admin-main {
        padding: 1rem 0.75rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 2.25rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
}

/* Stat Cards - Modern Design */
.stat-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
    border-color: rgba(102, 126, 234, 0.2);
}

.stat-card:hover::before {
    transform: scaleY(1);
}

.stat-icon {
    font-size: 2.25rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.stat-total .stat-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-valid .stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.stat-expired .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.stat-suspended .stat-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.stat-content {
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    margin: 0 0 0.25rem 0;
    color: #0f172a;
    letter-spacing: -1px;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

/* Status Badges */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Login Page */
.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

.login-container {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
}

.login-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.login-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.3);
}

.login-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.login-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.login-logo {
    width: 60px;
    height: 60px;
    position: relative;
    z-index: 1;
    filter: brightness(0) invert(1);
}

.login-form .form-label {
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.login-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    outline: none;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
    z-index: 10;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.login-btn {
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.login-btn:hover::before {
    width: 300px;
    height: 300px;
}

.login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-footer a {
    transition: all 0.3s ease;
}

.login-footer a:hover {
    color: var(--primary-color) !important;
    transform: translateX(-3px);
}

/* Forms */
.license-form .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.license-form .card-header {
    border-radius: 10px 10px 0 0 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff !important;
    border: none;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    color: #ffffff !important;
    background: var(--gradient-primary);
}

.btn-primary i {
    color: #ffffff !important;
}

.btn-primary.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-secondary {
    background: #6b7280;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 25px;
}

/* Tables */
.table {
    background: white;
}

.table thead {
    background: #f9fafb;
}

.table-hover tbody tr:hover {
    background: #f9fafb;
}

/* What You Get Section */
.what-you-get {
    background: white;
}

.info-visual {
    background: #f9fafb;
    border-radius: 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Trust Section */
.trust-item {
    padding: 20px;
}

.trust-item i {
    display: block;
    margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.accordion-button {
    font-weight: 600;
    background: #f9fafb;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-logo-main {
        width: 280px;
        height: 280px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 0 30px;
        min-height: 160px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 0.5rem;
    }
    
    .page-header h1 i {
        font-size: 1.6rem;
        margin-right: 0;
        margin-bottom: 0.4rem;
    }
    
    .page-header .lead {
        font-size: 0.95rem;
    }
    
    .hero-section {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-logo-main {
        width: 220px;
        height: 220px;
        margin-top: 40px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .feature-card-modern,
    .step-card-modern,
    .trust-card-modern {
        margin-bottom: 20px;
    }
    
    .stat-card-modern {
        margin-bottom: 20px;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cta-card-modern {
        padding: 30px 20px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .info-item-modern {
        flex-direction: column;
        text-align: center;
    }
    
    .float-element {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}
