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

:root {
    --primary: hsl(219, 89%, 34%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-light: hsl(219, 89%, 45%);
    --secondary: hsl(0, 0%, 66%);
    --accent: hsl(50, 90%, 53%);
    --accent-foreground: hsl(219, 89%, 34%);
    --muted: hsl(219, 30%, 96%);
    --muted-foreground: hsl(222.9, 9.1%, 15.1%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(219, 89%, 34%);
    --border: hsl(218.4, 30.9%, 84.1%);

    --gradient-primary: linear-gradient(135deg, hsl(219, 89%, 34%) 0%, hsl(219, 89%, 45%) 100%);
    --gradient-accent: linear-gradient(135deg, hsl(50, 90%, 53%) 0%, hsl(45, 90%, 60%) 100%);
    --shadow-primary: 0 8px 32px hsla(219, 89%, 34%, 0.15);
    --shadow-accent: 0 8px 32px hsla(50, 90%, 53%, 0.25);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-elevated: 0 10px 40px -10px rgba(10, 61, 165, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1400px;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition-smooth);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 2rem;
}

.nav-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    transition: transform 0.3s;
}

.nav-logo:hover .logo-icon {
    transform: scale(1.05);
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.nav-link:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    position: relative;
    transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-smooth);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-btn.active .hamburger {
    background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
    bottom: 2px;
    transform: rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin-top: 1rem;
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
    max-height: 500px;
    opacity: 1;
    padding: 1.5rem 0;
}

.mobile-link {
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-link:hover {
    color: var(--primary);
    background-color: hsla(50, 90%, 53%, 0.1);
}

.hide {
    display: none !important;
}

.form-section {
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 400;
    color: rgba(16, 16, 17, 0.69);
    margin-bottom: 5px;
}

.input-group {
    position: relative;
}

.form-control,
.form-select {
    border: 2px solid #e2e8f0;
    border-radius: 10px !important;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f7fafc;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control.icon,
.form-select.icon {
    padding: 12px 16px 12px 45px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-text);
    z-index: 10;
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 9999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 8px 12px hsla(219, 89%, 34%, 0.25);
}

.btn-primary.light {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-primary.light:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-login {
    background: rgba(10, 61, 165, 0.08);
    color: var(--primary);
    border: 1.5px solid rgba(10, 61, 165, 0.15);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    padding: 0.625rem 1.25rem;
    backdrop-filter: blur(10px);
}

.btn-login:hover {
    background: rgba(10, 61, 165, 0.12);
    border-color: rgba(10, 61, 165, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 61, 165, 0.15);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
    transform: scale(1.05);
}

.btn-accent {
    background: var(--gradient-accent);
    color: var(--accent-foreground);
    font-weight: 600;
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    background: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 12px 40px hsla(50, 90%, 53%, 0.35);
}

.btn-lg {
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

.btn-cta-primary {
    background-color: white;
    color: var(--accent);
}

.btn-cta-primary:hover {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-elevated);
    color: hsla(50, 90%, 53%, 1);
}

.btn-cta-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-cta-outline:hover {
    background-color: white;
    color: var(--accent);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 50%, #e3f2fd 100%);
    overflow: hidden;
    padding: 7rem 0 4rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, hsla(50, 90%, 53%, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {

    0%,
    100% {
        transform: scale(1) translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1) translateY(-20px);
        opacity: 0.7;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
    }
}

/* Left Side - Text Content */
.hero-left {
    position: relative;
    z-index: 10;
    opacity: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, hsla(50, 90%, 53%, 0.2) 0%, hsla(50, 90%, 53%, 0.1) 100%);
    color: var(--accent-foreground);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    border: 2px solid hsla(50, 90%, 53%, 0.3);
    box-shadow: var(--shadow-accent);
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: var(--shadow-accent);
    }

    50% {
        box-shadow: 0 8px 35px hsla(50, 90%, 53%, 0.4);
    }
}

.badge-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.hero-main-title {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-main-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-main-title {
        font-size: 4rem;
    }
}

.animated-word {
    display: inline-block;
    color: #ffffff;
    position: relative;
    font-size: 0.9em;
    font-weight: 700;
    background-color: var(--accent);
    padding: 3px;
}

.animated-word::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 0.35rem;
    border-radius: 2px;
    animation: underline-slide 1.2s ease-out forwards;
    box-shadow: var(--shadow-accent);
}

@keyframes underline-slide {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 100%;
        opacity: 1;
    }
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--foreground);
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    background-color: hsla(50, 90%, 53%, 0.08);
    transform: translateX(5px);
}

.hero-feature-item svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px hsla(219, 89%, 34%, 0.2));
}

.hero-feature-item span {
    font-size: 1.125rem;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-accent {
    background: var(--gradient-accent);
    box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
    box-shadow: 0 12px 40px hsla(50, 90%, 53%, 0.4);
    transform: translateY(-2px) scale(1.05);
}

.btn-outline-hero {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 31, 63, 0.1);
}

.btn-outline-hero:hover {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 31, 63, 0.2);
    transform: translateY(-2px) scale(1.05);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(0, 31, 63, 0.1);
}

.stat-mini {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    text-align: left;
    position: relative;
}

.icon_stats {
    position: absolute;
    width: 63px;
    height: 54px;
    left: -68px;
    top: 3px;
}

.icon_stats img {
    max-width: 95%;
}

.stat-mini:hover {
    transform: translateY(-5px);
}

.stat-mini strong {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.stat-mini span {
    font-size: 0.875rem;
    opacity: 0.65
}

/* Right Side - Image */
.hero-right {
    position: relative;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Liquid Shape Container */
.liquid-shape {
    position: relative;
    width: 100%;
    height: 500px;
    max-width: 500px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .liquid-shape {
        height: 600px;
        max-width: 600px;
    }
}

.hero-driver-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    animation: floatDriver 6s ease-in-out infinite;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.35),
        0 0 60px rgba(255, 107, 53, 0.2);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.hero-driver-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    scale: 1.2;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-driver-image.active {
    opacity: 1;
}

@keyframes floatDriver {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px) scale(1);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    33% {
        transform: translate(-50%, -50%) translateY(-20px) scale(1.03);
        border-radius: 60% 40% 50% 70% / 60% 30% 70% 40%;
    }

    66% {
        transform: translate(-50%, -50%) translateY(-10px) scale(1.01);
        border-radius: 50% 60% 40% 60% / 50% 70% 30% 60%;
    }
}

/* Floating Advantage Boxes */
.floating-box {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 1.25rem;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(10, 61, 165, 0.08),
        0 1px 2px rgba(10, 61, 165, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.9);
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 0.5px solid rgba(10, 61, 165, 0.08);
}

.floating-box:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 48px rgba(10, 61, 165, 0.12),
        0 2px 4px rgba(10, 61, 165, 0.06),
        inset 0 0 0 1px rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.92);
}

.floating-box-1 {
    top: 10%;
    left: -10%;
    animation: floatBox1 4s ease-in-out infinite;
}

.floating-box-2 {
    top: 45%;
    right: -15%;
    animation: floatBox2 5s ease-in-out infinite;
}

.floating-box-3 {
    bottom: 15%;
    left: -5%;
    animation: floatBox3 4.5s ease-in-out infinite;
}

.floating-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.floating-box:hover .floating-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(10, 61, 165, 0.2);
}

.floating-icon svg {
    width: 22px;
    height: 22px;
}

.floating-content h4 {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0 0 0.125rem 0;
    letter-spacing: -0.01em;
}

.floating-content p {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin: 0;
    opacity: 0.85;
}

@keyframes floatBox1 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes floatBox2 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatBox3 {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 1rem 1.5rem;
        border-radius: 30px;
    }

    .hero-container {
        padding-top: 6rem;
    }

    .liquid-shape {
        max-width: 400px;
    }

    /* Floating boxes responsive */
    .floating-box {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
        font-size: 0.875rem;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .floating-icon svg {
        width: 20px;
        height: 20px;
    }

    .floating-content h4 {
        font-size: 0.875rem;
    }

    .floating-content p {
        font-size: 0.75rem;
    }

    .floating-box-1 {
        top: 5%;
        left: -5%;
    }

    .floating-box-2 {
        top: 50%;
        right: -10%;
    }

    .floating-box-3 {
        bottom: 10%;
        left: 0%;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--primary);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-wheel {
    width: 0.25rem;
    height: 0.75rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Section Styles
   ========================================================================== */

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
    opacity: 0;
}

.section-header.active::after {
    opacity: 1;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

.section-header-light .section-title {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section-header-light .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about {
    background-color: var(--muted);
}

.about-grid {
    display: grid;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-card {
    background: white;
    padding: 2rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 95%;
    margin: 0 auto;
    margin-bottom: 0px;
    margin-bottom: 10px;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.about-card:nth-child(1) {
    justify-self: end;
}

.about-card:nth-child(2) {
    justify-self: start;
}

.about-card:hover {
    box-shadow: var(--shadow-primary);
    border-color: var(--primary);
}

.about-card:hover::before {
    opacity: 0.25;
    transform: scale(1.1) rotate(5deg);
}

.coloana-stanga,
.coloana-dreapta {
    position: relative;
}

.coloana-stanga .about-card {
    margin-left: auto;
    margin-right: 0;
    height: 100%;
}

.coloana-dreapta .about-card {
    margin-right: auto;
    margin-left: 0;
    height: 100%;
}

.coloana-stanga .element-absolut {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    background-color: #0b45b1;
    height: 100%;
    border-top-left-radius: 1.5rem;
    border-bottom-left-radius: 1.5rem;
}

.coloana-dreapta .element-absolut {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    background-color: #0b45b1;
    height: 100%;
    border-top-right-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    padding: 1.25rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.driver-icon {
    background: linear-gradient(135deg, hsla(50, 90%, 53%, 0.15), hsla(50, 90%, 60%, 0.25));
}

.driver-icon svg {
    color: var(--accent-foreground);
}

.company-icon {
    background: linear-gradient(135deg, hsla(219, 89%, 34%, 0.1), hsla(219, 89%, 45%, 0.2));
}

.company-icon svg {
    color: var(--primary);
}

.card-title {
    font-size: 1.9rem;
    font-weight: 700;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.driver-icon+* .feature-icon {
    color: var(--primary);
}

.company-icon+* .feature-icon {
    color: var(--primary);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

.feature-text {
    color: var(--muted-foreground);
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features .section-title {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .features .section-title {
        font-size: 3.25rem;
    }
}

.features .section-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted-foreground);
}

.features-grid {
    display: grid;
    gap: 2rem;
    max-width: 87.5rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    border: 2px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: scale(0.8) rotateY(-30deg);
}

.feature-card:hover {
    box-shadow: var(--shadow-primary);
    transform: translateY(-8px) scale(1) rotateY(0);
    border-color: var(--primary);
}

.feature-card-icon {
    display: inline-flex;
    padding: 1rem;
    background: linear-gradient(135deg, hsla(50, 90%, 53%, 0.15), hsla(50, 90%, 60%, 0.25));
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, hsla(50, 90%, 53%, 0.25), hsla(50, 90%, 60%, 0.35));
}

.feature-card-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--accent-foreground);
    transition: transform 0.3s;
}

.feature-card:hover .feature-card-icon svg {
    transform: scale(1.1);
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.feature-card-text {
    color: var(--muted-foreground);
}

/* ==========================================================================
   Stats Section
   ========================================================================== */

.stats {
    background: var(--primary);
    color: white;
    padding: 100px 0 80px 0;
}

.stats .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .stats .section-title {
        font-size: 3.25rem;
    }
}

.stats .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white !important;
    letter-spacing: -0.02em;
    line-height: 1;
}

@media (min-width: 768px) {
    .stats .stat-number {
        font-size: 4rem;
    }
}

.stats .stat-number::after {
    content: '+';
    font-size: 0.7em;
    margin-left: 2px;
}

.stats .stat-item:last-child .stat-number::after {
    content: '%';
}

.stats .stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    opacity: 1;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials {
    background-color: var(--primary);
    color: white;
    padding: 80px 0 100px 0;
    overflow: hidden;
}

.testimonials .section-title {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .testimonials .section-title {
        font-size: 3.25rem;
    }
}

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 300;
}

.testimonial-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    gap: 32px;
    animation: slideTestimonials 30s linear infinite;
    width: fit-content;
}

.testimonial-slider:hover {
    animation-play-state: paused;
}

@keyframes slideTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 16px));
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border-radius: 12px;
    padding: 24px;
    width: 350px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
    background: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .testimonial-slider-container {
        max-width: 100%;
    }

    .testimonial-card {
        padding: 20px;
        width: 280px;
    }

    .testimonial-slider {
        gap: 20px;
    }

    @keyframes slideTestimonials {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-50% - 10px));
        }
    }
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    color: hsla(50, 90%, 53%, 0.2);
}

.testimonial-quote {
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent), #ff8533);
    flex-shrink: 0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.25rem;
}

.author-role {
    color: var(--muted-foreground);
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background-color: var(--primary);
    color: white;
}

.footer-cta {
    background: var(--gradient-accent);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-foreground);
}



@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.footer-content {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

.social-links svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 7rem 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 50px;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    border-color: var(--accent);
    background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(243, 207, 27, 0.15);
}

.newsletter-form .btn {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 50px;
    white-space: nowrap;
}

.newsletter-form .btn:hover {
    transform: translateY(-50%) scale(1.02);
}

.newsletter-response {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    display: none;
}

.newsletter-response.success {
    display: block;
    background: rgba(39, 174, 96, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(39, 174, 96, 0.3);
}

.newsletter-response.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
    }
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

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

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

/* ============================================
   LOGIN PAGE
   ============================================ */

.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg,
            hsla(219, 89%, 98%, 1) 0%,
            hsla(219, 30%, 96%, 1) 100%);
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin: 0 auto;
}

.login-form-wrapper {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    margin-bottom: 2.5rem;
}

.login-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: hsla(219, 89%, 34%, 1);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-size: 1rem;
    color: hsla(219, 20%, 50%, 1);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: hsla(219, 89%, 34%, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-label svg {
    color: hsla(219, 89%, 34%, 0.6);
}

.form-input {
    padding: 0.875rem 1rem;
    border: 2px solid hsla(0, 0%, 90%, 1);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.form-input:focus {
    outline: none;
    border-color: hsla(219, 89%, 34%, 1);
    box-shadow: 0 0 0 3px hsla(219, 89%, 34%, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: hsla(219, 20%, 40%, 1);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
}

.forgot-password {
    font-size: 0.875rem;
    color: hsla(219, 89%, 34%, 1);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: hsla(219, 89%, 42%, 1);
}

.divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: hsla(0, 0%, 90%, 1);
}

.divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    font-size: 0.875rem;
    color: hsla(219, 20%, 50%, 1);
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border: 2px solid hsla(0, 0%, 90%, 1);
    background: white;
    color: hsla(219, 20%, 40%, 1);
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-social:hover {
    border-color: hsla(219, 89%, 34%, 1);
    background: hsla(219, 89%, 34%, 0.03);
    transform: translateY(-2px);
}

.login-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: hsla(219, 20%, 50%, 1);
}

.signup-link {
    color: hsla(219, 89%, 34%, 1);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: hsla(219, 89%, 42%, 1);
}

.login-info-panel {
    background: linear-gradient(135deg,
            hsla(219, 89%, 34%, 1) 0%,
            hsla(219, 89%, 42%, 1) 100%);
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-info-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            hsla(50, 90%, 53%, 0.1) 0%,
            transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.info-content {
    position: relative;
    z-index: 1;
    color: white;
}

.info-icon {
    width: 4rem;
    height: 4rem;
    background: hsla(50, 90%, 53%, 1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.info-icon svg {
    width: 2rem;
    height: 2rem;
    color: hsla(219, 89%, 34%, 1);
}

.info-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.info-text {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.info-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.info-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.info-feature svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: hsla(50, 90%, 53%, 1);
}

.info-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid hsla(255, 255%, 255%, 0.2);
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-box strong {
    font-size: 1.75rem;
    font-weight: 700;
    color: hsla(50, 90%, 53%, 1);
}

.stat-box span {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .login-container {
        grid-template-columns: 1fr;
    }

    .login-info-panel {
        display: none;
    }

    .login-form-wrapper {
        padding: 3rem 2rem;
    }
}

@media (max-width: 576px) {
    .login-section {
        padding: 6rem 1rem 2rem;
    }

    .login-form-wrapper {
        padding: 2rem 1.5rem;
    }

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

    .social-login {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Account Dashboard Styles
   ========================================================================== */

.account-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fd 0%, #e8eaf6 100%);
    padding-top: 100px;
}

.account-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Sidebar */
.account-sidebar {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8eaf6;
    margin-bottom: 2rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(219, 89%, 34%) 0%, hsl(219, 89%, 45%) 100%);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px hsla(219, 89%, 34%, 0.3);
    overflow: hidden;
    border: 1px solid #0a40a4;
}

.user-avatar img {
    max-width: 100%;
}

.user-avatar svg {
    width: 40px;
    height: 40px;
    color: white;
}

/* Avatar wrapper for upload button positioning */
.user-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin: 0 auto 1rem;
}

.user-avatar-wrapper .user-avatar {
    margin: 0;
}

/* Avatar upload button */
.avatar-upload-btn {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, hsl(219, 89%, 34%) 0%, hsl(219, 89%, 45%) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.avatar-upload-btn svg {
    width: 14px;
    height: 14px;
    color: white;
}

.avatar-upload-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, hsl(219, 89%, 40%) 0%, hsl(219, 89%, 50%) 100%);
}

.avatar-upload-btn:active {
    transform: scale(0.95);
}

.avatar-upload-btn.uploading {
    animation: avatar-btn-spin 1s linear infinite;
}

@keyframes avatar-btn-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.user-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(219, 89%, 34%);
    margin: 0 0 0.5rem 0;
}

.user-role {
    font-size: 0.875rem;
    color: hsl(219, 20%, 60%);
    margin: 0;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: 8px;
    color: hsl(219, 20%, 40%);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar-link svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-link:hover {
    background: hsl(219, 30%, 96%);
    color: hsl(219, 89%, 34%);
}

.sidebar-link.active {
    background: linear-gradient(135deg, hsl(219, 89%, 34%) 0%, hsl(219, 89%, 45%) 100%);
    color: white;
}

/* Main Content */
.account-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.account-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.header-text {
    flex: 1;
}

.account-title {
    font-size: 2rem;
    font-weight: 800;
    color: hsl(219, 89%, 34%);
    margin: 0 0 0.5rem 0;
}

.account-subtitle {
    font-size: 1rem;
    color: hsl(219, 20%, 50%);
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.stat-icon.blue {
    background: linear-gradient(135deg, #4F9CF9 0%, #3A7BD5 100%);
}

.stat-icon.green {
    background: linear-gradient(135deg, #56CCF2 0%, #2D9CDB 100%);
}

.stat-icon.yellow {
    background: linear-gradient(135deg, hsl(50, 90%, 53%) 0%, hsl(45, 90%, 48%) 100%);
}

.stat-icon.purple {
    background: linear-gradient(135deg, #9B51E0 0%, #7B2CBF 100%);
}

.stat-icon-wrapper {
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: hsl(219, 20%, 50%);
    margin: 0 0 0.5rem 0;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: hsl(219, 89%, 34%);
    margin: 0 0 0.5rem 0;
}

.stat-change {
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 0;
}

.stat-change.positive {
    color: #27AE60;
}

.stat-change.neutral {
    color: hsl(219, 20%, 60%);
}

/* Account Grid */
.account-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
}

.activity-card,
.quick-actions-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(219, 89%, 34%);
    margin: 0;
}

.view-all-link {
    font-size: 0.875rem;
    color: hsl(219, 89%, 34%);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.view-all-link:hover {
    opacity: 0.7;
}

/* Activity List */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: hsl(219, 30%, 98%);
    transition: background 0.3s ease;
}

.activity-item:hover {
    background: hsl(219, 30%, 95%);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.activity-icon.completed {
    background: linear-gradient(135deg, #56CCF2 0%, #2D9CDB 100%);
}

.activity-icon.pending {
    background: linear-gradient(135deg, hsl(50, 90%, 53%) 0%, hsl(45, 90%, 48%) 100%);
}

.activity-icon.info {
    background: linear-gradient(135deg, #9B51E0 0%, #7B2CBF 100%);
}

.activity-content {
    flex: 1;
}

.activity-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: hsl(219, 89%, 34%);
    margin: 0 0 0.25rem 0;
}

.activity-time {
    font-size: 0.8125rem;
    color: hsl(219, 20%, 60%);
    margin: 0;
}

.activity-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #27AE60;
}

.activity-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    background: hsl(50, 90%, 90%);
    color: hsl(45, 90%, 35%);
}

/* Quick Actions */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    border: 2px solid hsl(219, 30%, 93%);
    border-radius: 12px;
    background: white;
    color: hsl(219, 89%, 34%);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    font-weight: 600;
}

.action-btn:hover {
    border-color: hsl(219, 89%, 34%);
    background: hsl(219, 30%, 98%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, hsl(219, 30%, 96%) 0%, hsl(219, 30%, 92%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-icon svg {
    width: 24px;
    height: 24px;
    color: hsl(219, 89%, 34%);
}

/* Profile Info Section */
.profile-info-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.profile-section {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid hsl(219, 30%, 93%);
}

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

.profile-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(219, 89%, 34%);
    margin-bottom: 1.5rem;
}

.form-field.disabled {
    opacity: 0.7;
}

.form-field.disabled .form-input,
.form-field.disabled .form-textarea {
    background-color: hsl(219, 30%, 96%);
    cursor: not-allowed;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(219, 89%, 28%);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid hsl(219, 30%, 90%);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: hsl(219, 89%, 28%);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: hsl(219, 89%, 34%);
    box-shadow: 0 0 0 3px hsla(219, 89%, 34%, 0.1);
}

.form-input:disabled,
.form-textarea:disabled {
    background-color: hsl(219, 30%, 96%);
    cursor: not-allowed;
}

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

.form-description {
    font-size: 0.95rem;
    color: hsl(219, 30%, 45%);
    line-height: 1.5;
}

.profile-info-note {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: hsl(219, 30%, 97%);
    border-radius: 8px;
    border-left: 3px solid hsl(219, 89%, 34%);
}

.container_experienta {
    transition: all 0.3s ease;
    overflow: hidden;
}

.container_experienta:hover {
    border-color: hsl(219, 89%, 34%);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
}

.container_experienta .form-label {
    margin-bottom: 0;
    font-weight: 600;
}

.container_camp_experienta {
    margin-top: 1rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Experience Section */
.experience-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
}

.section-header {
    text-align: left;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.section-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: hsl(219, 89%, 28%);
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid hsl(219, 89%, 34%);
    border-radius: 8px;
    background: transparent;
    color: hsl(219, 89%, 34%);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: hsl(219, 89%, 34%);
    color: white;
}

.btn-outline-primary svg {
    width: 18px;
    height: 18px;
}

.experience-timeline {
    position: relative;
    padding-left: 2rem;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg,
            hsl(219, 89%, 34%) 0%,
            hsl(219, 70%, 50%) 50%,
            hsl(219, 30%, 85%) 100%);
}

.experience-item {
    position: relative;
    margin-bottom: 2rem;
}

.experience-item:last-child {
    margin-bottom: 0;
}

.experience-marker {
    position: absolute;
    left: -1.92rem;
    top: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: white;
    border: 3px solid hsl(219, 89%, 34%);
    z-index: 2;
}

.experience-card {
    background: linear-gradient(135deg,
            hsl(219, 30%, 98%) 0%,
            white 100%);
    border: 2px solid hsl(219, 30%, 93%);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.experience-card:hover {
    border-color: hsl(219, 89%, 34%);
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.12);
    transform: translateY(-2px);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.experience-company {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.company-logo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(135deg,
            hsl(219, 89%, 34%) 0%,
            hsl(219, 80%, 45%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.15);
}

.company-logo svg {
    width: 32px;
    height: 32px;
    color: white;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(219, 89%, 28%);
    margin-bottom: 0.25rem;
}

.job-title {
    font-size: 1rem;
    color: hsl(219, 50%, 45%);
    font-weight: 600;
}

.experience-badge {
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: hsl(219, 30%, 93%);
    color: hsl(219, 50%, 40%);
}

.experience-badge.current {
    background: linear-gradient(135deg,
            hsl(142, 76%, 36%) 0%,
            hsl(142, 70%, 45%) 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.experience-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(219, 40%, 50%);
    font-size: 0.875rem;
}

.detail-item svg {
    width: 16px;
    height: 16px;
    color: hsl(219, 89%, 34%);
}

.experience-description {
    color: hsl(219, 30%, 35%);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg,
            hsl(50, 90%, 94%) 0%,
            hsl(50, 85%, 90%) 100%);
    color: hsl(45, 90%, 35%);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid hsl(50, 90%, 80%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .account-container {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .account-section {
        padding-top: 80px;
    }

    .account-container {
        padding: 1rem;
    }

    .account-header {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .account-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .experience-section {
        padding: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .experience-timeline {
        padding-left: 1.5rem;
    }

    .experience-marker {
        left: -1.5rem;
    }

    .experience-card {
        padding: 1rem;
    }

    .company-logo {
        width: 48px;
        height: 48px;
    }

    .company-logo svg {
        width: 28px;
        height: 28px;
    }

    .experience-header {
        flex-direction: column;
        gap: 1rem;
    }

    .experience-details {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .action-btn {
        flex-direction: row;
        justify-content: flex-start;
        padding: 1rem;
    }

    .action-icon {
        width: 40px;
        height: 40px;
    }

    .action-icon svg {
        width: 20px;
        height: 20px;
    }

    .section-header {
        gap: 0.75rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .btn-outline-primary {
        width: 100%;
        justify-content: center;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .job-title {
        font-size: 0.9rem;
    }

    .experience-timeline::before {
        left: 0.25rem;
    }

    .experience-marker {
        left: -1.6rem;
        width: 0.75rem;
        height: 0.75rem;
    }
}

/* ==========================================================================
   Registration Forms Styles
   ========================================================================== */

/* Breadcrumbs */
.breadcrumbs-container {
    background: white;
    padding: 1rem 0;
    margin-top: 6rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-item {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb-item:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
    text-decoration: underline;
}

.breadcrumb-separator {
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
}

.breadcrumb-separator svg {
    width: 1rem;
    height: 1rem;
}

/* Form Hero Section */
.form-hero {
    position: relative;
    height: 40vh;
    overflow: hidden;
}

.form-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.form-hero-overlay.gradient-overlay {
    background: linear-gradient(135deg,
            hsla(219, 89%, 28%, 0.75) 0%,
            hsla(219, 89%, 35%, 0.70) 25%,
            hsla(219, 89%, 42%, 0.65) 50%,
            hsla(210, 80%, 48%, 0.58) 70%,
            hsla(50, 90%, 53%, 0.45) 90%,
            hsla(50, 90%, 60%, 0.35) 100%);
    backdrop-filter: blur(3px);
}

.form-hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    z-index: 1;
}

.form-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .form-hero-title {
        font-size: 3rem;
    }
}

.form-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 40rem;
}

/* Form Section */
.form-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0fe 50%, #e3f2fd 100%);
}

.form-container {
    max-width: 64rem;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .form-container {
        padding: 3rem;
    }
}

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

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.form-description {
    color: var(--muted-foreground);
}

/* Form Sections */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsla(219, 89%, 34%, 0.1), hsla(219, 89%, 45%, 0.2));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Form Grid */
.form-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-grid-single {
    display: grid;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: initial;
    color: hsl(0, 0%, 26.3%);
    font-size: 0.875rem;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    background: #ffffff;
    transition: all 0.3s;
    font-family: inherit;
    width: 100%;
    margin-bottom: 10px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px hsla(219, 89%, 34%, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #bdd0ec;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
    line-height: 1.5;
}

/* Input with action button */
.input-with-action {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-action .form-input {
    padding-right: 3rem;
    margin-bottom: 0;
}

.input-action-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), hsl(219, 89%, 45%));
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(9, 16, 87, 0.2);
}

.input-action-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(9, 16, 87, 0.3);
}

.input-action-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.input-action-btn svg {
    width: 16px;
    height: 16px;
}

/* Section Overlay Loader */
.section-overlay-loader {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 10;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(2px);
}

.section-overlay-loader.active {
    display: flex;
}

.section-overlay-loader span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(9, 16, 87, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: loaderSpin 0.8s linear infinite;
}

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

/* Form Submit */
.form-submit {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.toast:not(:last-child) {
    margin-bottom: .75rem
}

.toast-border-primary .toast-body {
    color: #091057;
    border-bottom: 3px solid #091057
}

.toast-border-secondary .toast-body {
    color: #3577f1;
    border-bottom: 3px solid #3577f1
}

.toast-border-success .toast-body {
    color: #0ab39c;
    border-bottom: 3px solid #0ab39c
}

.toast-border-info .toast-body {
    color: #299cdb;
    border-bottom: 3px solid #299cdb
}

.toast-border-warning .toast-body {
    color: #f7b84b;
    border-bottom: 3px solid #f7b84b
}

.toast-border-danger .toast-body {
    color: #f06548;
    border-bottom: 3px solid #f06548
}

.toast-border-light .toast-body {
    color: #f3f6f9;
    border-bottom: 3px solid #f3f6f9
}

.toast-border-dark .toast-body {
    color: #212529;
    border-bottom: 3px solid #212529
}

.toastify {
    padding: 12px 16px;
    color: #fff;
    display: inline-block;
    -webkit-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .12), 0 10px 36px -4px rgba(77, 96, 232, .3);
    box-shadow: 0 3px 6px -1px rgba(0, 0, 0, .12), 0 10px 36px -4px rgba(77, 96, 232, .3);
    background: var(--vz-success);
    position: fixed;
    opacity: 0;
    -webkit-transition: all .4s cubic-bezier(.215, .61, .355, 1);
    transition: all .4s cubic-bezier(.215, .61, .355, 1);
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    max-width: calc(50% - 20px);
    z-index: 2147483647
}

.toastify.on {
    opacity: 1
}

.toast-close {
    opacity: .4;
    padding: 0 5px;
    position: relative;
    left: 4px;
    margin-left: 4px;
    border: none;
    background: 0 0;
    color: #fff
}

.toastify-right {
    right: 15px
}

.toastify-left {
    left: 15px
}

.toastify-left .toast-close {
    left: -4px;
    margin-left: 0;
    margin-right: 4px
}

.toastify-top {
    top: -150px
}

.toastify-bottom {
    bottom: -150px
}

.toastify-rounded {
    border-radius: 25px
}

.toastify-avatar {
    width: 1.5em;
    height: 1.5em;
    margin: -7px 5px;
    border-radius: 2px
}

.toastify-center {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: -webkit-fit-content;
    max-width: fit-content;
    max-width: -moz-fit-content
}

@media only screen and (max-width:360px) {

    .toastify-left,
    .toastify-right {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content
    }
}

#toast-container {
    top: 3%;
    opacity: 1;
}

#toast-container.toast-top-center .toast {
    border: transparent;
    width: 35%;
    opacity: 1;
    padding: 25px 15px 25px 62px;
    box-shadow: 0 0 12px rgba(153, 153, 153, 0.42);
}

#toast-container.toast-top-center .toast .toast-close-button {
    top: -22px;
}

#toast-container>div {
    opacity: 1;
    width: 600px !important;
    max-width: 80% !important;
}

/* ==========================================================================
   Cookie Consent Banner
   ========================================================================== */

.cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 420px;
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
    transform: translateY(100px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
}

.cookie-consent.show {
    display: initial;
    transform: translateY(0);
}

.cookie-consent.hide {
    display: none;
    transform: translateY(100px);
    pointer-events: none;
}

.cookie-content {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.cookie-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
}

.cookie-icon svg {
    width: 24px;
    height: 24px;
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.cookie-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px hsla(219, 89%, 34%, 0.2);
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px hsla(219, 89%, 34%, 0.3);
}

.cookie-btn-secondary {
    background: var(--muted);
    color: var(--muted-foreground);
}

.cookie-btn-secondary:hover {
    background: hsl(219, 30%, 90%);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: calc(100% - 2rem);
    }

    .cookie-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 1.25rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-icon {
        width: 40px;
        height: 40px;
    }
}

.relativ {
    position: relative !important;
}

.container_colorat {
    margin-bottom: 1rem;
    position: relative;
    padding: 15px;
    border-radius: 12px;
    border: 1px dashed rgba(31, 11, 206, 0.36);
    background-color: #f7fafc;
}

.container_colorat .elimina {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.input_calendar {
    position: relative;
}

.input_calendar::before {
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "\f133";
    font-size: 1em;
    z-index: 100;
}

.input_calendar .form-input,
.form-input.fara_margine {
    margin: 0;
}

.switch {
    position: relative;
    width: 150px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider_checkbox {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    max-width: 57px;
}

.slider_checkbox:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 22px;
    left: 4px;
    bottom: 5px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider_checkbox {
    background-color: #091057;
}

input:focus+.slider_checkbox {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider_checkbox:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider_checkbox.round {
    border-radius: 29px;
    height: 28px;
    line-height: 28px;
}

.slider_checkbox.round:before {
    border-radius: 45%;
}

.container_slider_checkbox .taburi_element:not(.activ) {
    /*opacity: 0.7;*/
}

.container_slider_checkbox:hover {
    opacity: 1;
}

.container_slider_checkbox>span {
    font-weight: 600;
    font-size: 1.4em;
    margin-right: 25px;
}

/* Drag and Drop Upload Styles */
.container_incarcare_documente {
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.container_incarcare_documente:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.container_incarcare_documente.dragover {
    border-color: #667eea;
    background: #e6ecff;
    transform: scale(1.02);
}

.container_incarcare_documente i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 20px;
}

.container_incarcare_documente p {
    color: #718096;
    font-size: 16px;
    margin-bottom: 10px;
}

.container_incarcare_documente .formats {
    color: #a0aec0;
    font-size: 14px;
}

.documente_input {
    display: none;
}

.lista_documente {
    margin-top: 30px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f7fafc;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.file-item:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.file-item.uploading {
    opacity: 0.7;
}

.file-item.error {
    background: #fff5f5;
    border: 1px solid #fc8181;
}

.file-item.success {
    background: #f0fff4;
    border: 1px solid #68d391;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    max-width: 80%;
    overflow: hidden;
}

.file-icon {
    font-size: 32px;
    color: #667eea;
}

/* NEW: Thumbnail styles */
.file-thumbnail {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #e2e8f0;
    transition: opacity 0.3s ease;
}

.file-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf2f7;
    border-radius: 6px;
}

.file-name {
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 5px;
}

.file-size {
    font-size: 12px;
    color: #718096;
}

.file-remove {
    background: #fc8181;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-remove:hover {
    background: #f56565;
    transform: scale(1.1) rotate(90deg);
}

.file-remove:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.container_camp_experienta {
    background-color: #fff;
    border-radius: 14px;
    padding: 10px;
    font-weight: bold;
}

.container_camp_experienta label {
    font-weight: bold;
}

.header_mic {
    font-size: 1em;
}

.mesaj_notificare {
    background-color: #f4c934;
    border-radius: 15px;
    border-color: transparent;
    color: #0b45b0;
}

.mesaj_notificare .icon {
    font-size: 3em;
}

.mesaj_notificare .special {
    font-weight: initial;
    font-size: 1.3em;
    text-align: left;
}

.spatiu_mare {
    margin-top: 6em;
    margin-bottom: 6em;
}

.coloana_avantaje {
    border-radius: 15px;
    overflow: hidden;
}

.coloana_avantaje .header {
    padding: 80px 6px;
    font-weight: bold;
}

/* ==========================================================================
   Activation Page
   ========================================================================== */
.activare-container {
    max-width: 500px;
    margin: 40px auto;
}

.form-section {
    position: relative;
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #edf3fb;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    flex-direction: column;
    border-radius: 8px;
}

.loading-spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0d6efd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.input_icon {
    position: relative;
}

.input_icon::before {
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1em;
    z-index: 100;
}

.input_icon.icon_cheie::before {
    content: "\f084";
    width: 25px;
}

.input_icon.icon_user::before {
    content: "\f007";
    width: 25px;
}

.input_icon .form-input {
    margin: 0;
}

.form-input[disabled="disabled"] {
    background-color: #e7f1fe;
}

.modal .modal-header {
    background-color: #fbfcfd;
    border: none;
}

.modal .modal-footer {
    display: initial;
    background-color: #fbfcfd;
    padding: 4px;
    border: none;
}

.flatpickr-day.today {
    background-color: #9caecf;
    color: #ffffff;
}

.flatpickr-day.selected {
    border-color: #083487 !important;
    background-color: #083487 !important;
    color: #ffffff !important;
}

/* Upload Loading Spinner Styles */
.upload-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(247, 250, 252, 0.98);
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 10;
}

.file-item.uploading .upload-loader {
    display: flex;
}

.upload-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* Completely hide file info and remove button during upload */
.file-item.uploading .file-info,
.file-item.uploading .file-remove {
    visibility: hidden;
}

/* Ensure progress bar is behind the loader */
.file-item .progress-bar {
    z-index: 1;
}

.search-hero {
    position: relative;
    padding: 2.5rem;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #0c4fcd 100%);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.hero-icon-wrapper {
    position: relative;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
}

.icon-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringPulse 2s ease-out infinite;
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.hero-icon {
    inset: 4px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.hero-text p {
    margin: 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Category Selector */
.category-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.category-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-box:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.category-box.active {
    border-color: #2563eb;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
}

.category-icon i[class^="fa-"] {
    font-size: 1.2em;
}

.category-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s;
    flex-shrink: 0;
}

.category-box.active .category-icon {
    background: linear-gradient(135deg, #2563eb, #548bf0);
    color: white;
}

.category-info {
    flex: 1;
}

.category-title {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: #1e293b;
}

.category-desc {
    display: block;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.25rem;
}

.category-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: transparent;
    transition: all 0.3s;
}

.category-box.active .category-check {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

/* Search Form */
.search-form-container {
    background: white;
    border-radius: 20px;
    padding: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 0.7rem;
    border: 1px solid #e2e8f0;
}

.search-row {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.search-input-wrapper {
    flex: 2;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.search-input:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.input-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s;
}

.input-clear:hover {
    background: #e2e8f0;
    color: #64748b;
}

.select-wrapper {
    flex: 1;
    position: relative;
    min-width: 200px;
}

.search-select {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    background: #f8fafc;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s;
}

.search-select:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2563eb, #548bf0);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

/* Results */
.results-section {
    min-height: 400px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.results-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.results-count {
    font-weight: 600;
    color: #1e293b;
}

.results-count span {
    color: #2563eb;
}

.results-filter {
    font-size: 0.875rem;
    color: #64748b;
}

.reset-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.reset-btn:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Cards */
.driver-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardFadeIn 0.4s ease-out;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.driver-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-header {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    margin-bottom: 0;
}

.card-header.center {
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.driver-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #2563eb, #548bf0);
    margin: 0 auto;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.avatar-img.loaded {
    display: block;
}

.avatar-img.loaded+.avatar-placeholder {
    display: none;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.visibility-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.visibility-badge.visible {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.visibility-badge.hidden {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: center;
}

.driver-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
}

.driver-location,
.driver-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.driver-phone.locked {
    color: #94a3b8;
}

.driver-phone.locked .phone-text {
    font-style: italic;
}

/* Card Footer */
.card-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.btn-request-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-request-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-request-contact.sent {
    background: linear-gradient(135deg, #10b981, #059669);
    cursor: default;
    pointer-events: none;
}

.btn-request-contact.sending {
    opacity: 0.7;
    cursor: wait;
}

/* States */
.initial-state,
.loading-state,
.no-results-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.initial-illustration {
    margin-bottom: 2rem;
}

.floating-cards {
    position: relative;
    width: 200px;
    height: 120px;
    margin: 0 auto;
}

.card-float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    animation: floatCard 3s ease-in-out infinite;
    color: #2563eb;
}

.card-1 {
    left: 0;
    top: 30px;
}

.card-2 {
    left: 37%;
    transform: translateX(-50%);
    top: 26px;
    animation-delay: 0.5s;
}

.card-3 {
    left: 73%;
    transform: translateX(-50%);
    top: 26px;
    animation-delay: 1s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.initial-state h3,
.no-results-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.initial-state p,
.no-results-state p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

.loading-spinner {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-ring:nth-child(2) {
    inset: 8px;
    border-top-color: #548bf0;
    animation-duration: 1.2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    inset: 16px;
    border-top-color: #0ea5e9;
    animation-duration: 0.8s;
}

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

.no-results-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
}

/* Responsive */
@media (max-width: 900px) {
    .category-selector {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .search-hero {
        padding: 1.5rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .search-row {
        flex-direction: column;
    }

    .select-wrapper {
        min-width: 100%;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Profile Edit Sections
   ========================================================================== */

.profile-info-section {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

.profile-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

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

.profile-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.3rem;
}

.badge-editable {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.15));
    color: #059669;
    border-radius: 100px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-field.disabled .form-input,
.form-field.disabled .form-textarea {
    background: #f8fafc;
    color: #64748b;
    cursor: not-allowed;
    border-color: #e2e8f0;
}

.form-field.disabled .form-label {
    color: #94a3b8;
}

.form-switch-lg .form-check-input {
    width: 3em;
    height: 1.5em;
    cursor: pointer;
}

.form-switch-lg .form-check-input:checked {
    background-color: #0a43ab;
    border-color: #0a43ab;
}

.status-text {
    font-weight: 500;
    margin-left: 10px;
}

.setari-container .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.setari-container .card-header {
    background: linear-gradient(135deg, hsl(219, 89%, 34%) 0%, hsl(219, 89%, 45%) 100%);
    color: white;
    border-radius: 12px 12px 0 0 !important;
    border: none;
}

.setari-container .card-body {
    padding: 1.5rem;
}

/* ========================================
   NOTIFICATIONS PAGE - CLEAN PROFESSIONAL DESIGN
   ======================================== */

.notifications-hero {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 68, 175, 0.15);
}

.hero-icon svg {
    stroke: white;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: #1e293b;
}

.hero-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
}

.unread-badge {
    margin-left: auto;
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
    color: white;
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(11, 68, 175, 0.25);
}

/* Section Headers */
.notifications-section {
    margin-bottom: 1.5rem;
}

.section-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
}

.section-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header-left svg {
    color: #0b44af;
    flex-shrink: 0;
}

.section-header-left .section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.section-header-left .section-count {
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 8px;
    min-width: 28px;
    text-align: center;
}

/* Notification Cards */
.notifications-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.notification-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.notification-card.unread {
    background: #ebf7fd;
    border-color: rgba(102, 126, 234, 0.2);
}

.notification-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-radius: 0 4px 4px 0;
}

.notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: white;
}

.notification-icon svg {
    stroke: currentColor;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.notification-card.read .notification-title {
    color: #64748b;
}

.notification-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-time {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

.notification-time svg {
    opacity: 0.7;
}

.notification-actions {
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.notification-card:hover .notification-actions {
    opacity: 1;
}

.action-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.action-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: white;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-illustration {
    margin-bottom: 2rem;
}

.empty-icon-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
}

.empty-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: ring-pulse 3s ease-out infinite;
}

.ring-1 {
    inset: 0;
    border-color: rgba(102, 126, 234, 0.3);
    animation-delay: 0s;
}

.ring-2 {
    inset: 15px;
    border-color: rgba(102, 126, 234, 0.2);
    animation-delay: 0.5s;
}

.ring-3 {
    inset: 30px;
    border-color: rgba(102, 126, 234, 0.1);
    animation-delay: 1s;
}

@keyframes ring-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.empty-icon {
    position: absolute;
    inset: 45px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.75rem 0;
}

.empty-state p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .notifications-hero {
        padding: 1.5rem;
    }

    .hero-content {
        flex-wrap: wrap;
    }

    .hero-text h1 {
        font-size: 1.25rem;
    }

    .hero-text p {
        font-size: 0.85rem;
    }

    .hero-icon {
        width: 48px;
        height: 48px;
    }

    .unread-badge {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .notification-card {
        padding: 1rem;
    }

    .notification-icon {
        width: 40px;
        height: 40px;
    }

    .notification-actions {
        opacity: 1;
    }

    .section-header {
        padding-bottom: 0.5rem;
    }

    .section-header-left .section-title {
        font-size: 1rem;
    }
}

/* ========================================
   CONTACT REQUEST CARDS
   ======================================== */

.contact-requests-section {
    margin-bottom: 1.5rem;
}

.contact-request-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-request-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
}

.contact-request-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 68, 175, 0.12);
    border-color: #cbd5e1;
}

.contact-request-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
}

.contact-request-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-request-avatar .avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-request-avatar .avatar-placeholder svg {
    width: 28px;
    height: 28px;
}

.contact-request-info {
    flex: 1;
    min-width: 0;
}

.contact-request-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.requester-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.requester-type {
    display: inline-block;
    padding: 0.25rem 0.65rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
}

.contact-request-message {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0 0 0.25rem 0;
}

.contact-request-time {
    font-size: 0.8rem;
    color: #94a3b8;
}

.contact-request-actions {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
}

.btn-approve-contact,
.btn-reject-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-approve-contact {
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(11, 68, 175, 0.2);
}

.btn-approve-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 68, 175, 0.3);
}

.btn-reject-contact {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-reject-contact:hover {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
}

.contact-request-card.processing {
    opacity: 0.6;
    pointer-events: none;
}

.contact-request-card.processed {
    animation: fadeSlideOut 0.4s ease forwards;
}

@keyframes fadeSlideOut {
    to {
        opacity: 0;
        transform: translateX(-20px);
        height: 0;
        padding: 0;
        margin: 0;
        border: 0;
    }
}

/* Responsive for contact request cards */
@media (max-width: 768px) {
    .contact-request-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .contact-request-header {
        justify-content: center;
    }

    .contact-request-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-approve-contact,
    .btn-reject-contact {
        flex: 1;
        justify-content: center;
    }
}

/* ========================================
   CONTACT APPROVAL PRIORITY SECTION - DASHBOARD
   ======================================== */

.contact-approval-priority-section {
    background: #ffffff;
    border: 2px solid #0b44af;
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(11, 68, 175, 0.08);
}

.priority-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.priority-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 68, 175, 0.25);
}

.priority-icon svg {
    color: white;
}

.priority-text {
    flex: 1;
}

.priority-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.priority-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.btn-view-all-priority {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0b44af;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.625rem 1.125rem;
    border-radius: 10px;
    transition: all 0.25s ease;
    background: rgba(11, 68, 175, 0.08);
}

.btn-view-all-priority:hover {
    background: rgba(11, 68, 175, 0.15);
    color: #0a3a96;
    transform: translateX(2px);
}

.btn-view-all-priority svg {
    transition: transform 0.25s ease;
}

.btn-view-all-priority:hover svg {
    transform: translateX(3px);
}

.contact-request-card-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #eff6ff;
    border-radius: 12px;
    border-left: 3px solid #3b82f6;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 1rem;
}

.contact-request-card-compact:last-child {
    margin-bottom: 0;
}

.contact-request-card-compact::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 12px 0 0 12px;
}

.contact-request-card-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 68, 175, 0.12);
}

.contact-request-avatar-compact {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
}

.contact-request-avatar-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-request-avatar-compact .avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-request-avatar-compact .avatar-placeholder svg {
    width: 24px;
    height: 24px;
}

.contact-request-info-compact {
    flex: 1;
    min-width: 0;
}

.requester-name-compact {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.requester-type-compact {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 5px;
    margin-bottom: 0.25rem;
}

.contact-request-message-compact {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0.25rem 0;
}

.contact-request-time-compact {
    font-size: 0.75rem;
    color: #94a3b8;
}

.contact-request-actions-compact {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-approve-contact-compact,
.btn-reject-contact-compact {
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-approve-contact-compact {
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(11, 68, 175, 0.2);
}

.btn-approve-contact-compact svg {
    color: #ffffff;
    stroke: #ffffff;
}

.btn-approve-contact-compact:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(11, 68, 175, 0.35);
}

.btn-reject-contact-compact {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.btn-reject-contact-compact svg {
    color: #64748b;
    stroke: #64748b;
}

.btn-reject-contact-compact:hover {
    background: #f1f5f9;
    color: #475569;
    border-color: #cbd5e1;
    transform: scale(1.05);
}

.btn-reject-contact-compact:hover svg {
    color: #475569;
    stroke: #475569;
}

.contact-request-card-compact.processing {
    opacity: 0.6;
    pointer-events: none;
}

/* Responsive for priority section */
@media (max-width: 768px) {
    .contact-approval-priority-section {
        padding: 1.25rem;
    }

    .priority-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn-view-all-priority {
        align-self: flex-end;
    }

    .contact-request-card-compact {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .contact-request-actions-compact {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   REVIEWS / CALIFICATIVE SYSTEM
   ======================================== */

/* Reviews Hero Section */
.reviews-hero {
    position: relative;
    padding: 2.5rem;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
}

.reviews-count-badge {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    text-align: center;
    color: white;
}

/* Review Cards Container */
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual Review Card */
.review-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.review-company {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #548bf0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.review-date {
    font-size: 0.8rem;
    color: #94a3b8;
}

.pending-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.review-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-edit-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-edit-review:hover {
    background: linear-gradient(135deg, #2563eb, #548bf0);
    color: white;
}

/* Star Rating Display */
.review-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-rating .star {
    color: #e2e8f0;
    display: flex;
}

.review-rating .star.filled {
    color: #f59e0b;
}

.review-rating .star.filled svg {
    fill: #f59e0b;
}

.rating-text {
    margin-left: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
}

/* Review Comment */
.review-comment {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border-left: 4px solid #f59e0b;
}

.review-comment p {
    margin: 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Star Rating Input (Modal) */
.star-rating-input {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    padding: 1rem 0;
}

.star-input {
    cursor: pointer;
    color: #e2e8f0;
    transition: all 0.2s;
    display: flex;
}

.star-input:hover,
.star-input.hover,
.star-input.selected {
    color: #f59e0b;
    transform: scale(1.1);
}

.star-input.selected svg {
    fill: #f59e0b;
}

/* Review Modal Company Display */
.review-modal-company {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(84, 139, 240, 0.05));
    border-radius: 12px;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

/* Add Review Button */
.btn-add-review {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.5rem;
    width: 100%;
    justify-content: center;
}

.btn-add-review:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-add-review.is-edit {
    background: linear-gradient(135deg, #2563eb, #548bf0);
}

.btn-add-review.is-edit:hover {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Transportator card footer styling */
.driver-card .card-footer.show-review {
    display: flex !important;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Review rating display on search cards */
.card-review-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.card-review-rating .star {
    width: 14px;
    height: 14px;
    color: #e2e8f0;
}

.card-review-rating .star.filled {
    color: #f59e0b;
}

.card-review-rating .rating-label {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-left: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-hero {
        padding: 1.5rem;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
    }

    .review-actions {
        width: 100%;
    }

    .btn-edit-review {
        flex: 1;
        justify-content: center;
    }

    .star-rating-input {
        flex-wrap: wrap;
    }

    .star-input svg {
        width: 28px;
        height: 28px;
    }
}

.modal-content {
    color: initial;
}

.caseta_selectie {
    position: relative;
    border: 1px solid #0d6efd;
    border-radius: 14px;
    margin-right: 7px;
    margin-bottom: 4px;
    color: initial;
    font-size: 0.85em;
    padding: 4px 6px;
    display: inline-block;
    cursor: pointer;
}

.caseta_selectie:hover {
    background-color: #0d6efd;
    color: #ffffff;
}

.caseta_selectie.selectat {
    background-color: #0d6efd;
    color: #ffffff;
}

.caseta_selectie.selectat::before {
    position: absolute;
    top: -10px;
    right: -8px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    border: 1px solid #0d6efd;
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    text-align: center;
    border-radius: 50%;
    line-height: 20px;
    color: #0d6efd;
    font-size: 12px;
}

.alerta-notificare {
    background-color: #0b44af;
    color: #ffffff;
}

.btn-primary.alb {
    background: #ffffff;
    color: var(--primary);
    border-color: var(--primary);
}

.form-control::placeholder {
    opacity: 0.3;
}

.anunt-details {
    text-align: left;
}

/* ==========================================================================
   Document Preview Modal Styles
   ========================================================================== */

.document-preview-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: hsl(219, 30%, 97%);
}

.document-preview-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: hsl(219, 20%, 50%);
}

.document-preview-image {
    width: 100%;
    max-height: 80vh;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.document-preview-image img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.document-preview-pdf {
    width: 100%;
    height: 80vh;
}

.document-preview-pdf iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.document-preview-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: hsl(219, 20%, 50%);
    text-align: center;
}

#modal_previzualizare_document .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

#modal_previzualizare_document .modal-header {
    background: linear-gradient(135deg, hsl(219, 89%, 34%) 0%, hsl(219, 89%, 45%) 100%);
    color: white;
    border-bottom: none;
    padding: 1rem 1.5rem;
}

#modal_previzualizare_document .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

#modal_previzualizare_document .modal-header .btn-close:hover {
    opacity: 1;
}

#modal_previzualizare_document .modal-footer {
    border-top: 1px solid hsl(219, 30%, 93%);
    padding: 1rem 1.5rem;
}

/* Make file items clickable for preview */
.file-item.previewable {
    cursor: pointer;
    transition: all 0.2s ease;
}

.file-item.previewable:hover {
    background: hsl(219, 30%, 96%);
    transform: translateX(4px);
}

.file-item.previewable .file-info {
    position: relative;
}

.file-item.previewable .file-info::after {
    content: "Apasă pentru previzualizare";
    position: absolute;
    bottom: -18px;
    left: 0;
    font-size: 0.7rem;
    color: hsl(219, 89%, 45%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.file-item.previewable:hover .file-info::after {
    opacity: 1;
}

/* Preview icon overlay on thumbnails */
.file-item.previewable .file-thumbnail,
.file-item.previewable .file-icon-wrapper {
    position: relative;
}

.file-item.previewable:hover .file-thumbnail::after,
.file-item.previewable:hover .file-icon-wrapper::after {
    content: "\f06e";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.anunt-card {
    border-left: 4px solid #28a745;
    transition: all 0.3s ease;
}

.anunt-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.anunt-card.anunt-expirat {
    border-left-color: #dc3545;
    opacity: 0.8;
}

.anunt-card.anunt-expirat:hover {
    opacity: 1;
}

.anunt-details p {
    color: #555;
}

.alert-info {
    background-color: #fff;
    border: 1px solid #0a43ab;
    color: #0a43ab;
}

/* ==========================================================================
   Document Preview Cards (for verified accounts)
   ========================================================================== */

.document-preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid hsl(219, 30%, 93%);
}

.document-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: hsl(219, 89%, 45%);
}

.document-preview-card-thumbnail {
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, hsl(219, 30%, 97%) 0%, hsl(219, 30%, 93%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.document-preview-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.document-preview-card:hover .document-preview-card-thumbnail img {
    transform: scale(1.05);
}

.document-preview-card-thumbnail .document-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(219, 89%, 94%) 0%, hsl(219, 89%, 88%) 100%);
    color: hsl(219, 89%, 45%);
    font-size: 28px;
}

.document-preview-card-thumbnail .document-icon.pdf {
    background: linear-gradient(135deg, hsl(0, 70%, 95%) 0%, hsl(0, 70%, 88%) 100%);
    color: #dc3545;
}

.document-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 67, 171, 0.85) 0%, rgba(13, 110, 253, 0.85) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 8px;
}

.document-preview-overlay i {
    font-size: 28px;
}

.document-preview-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.document-preview-card:hover .document-preview-overlay {
    opacity: 1;
}

.document-preview-card-body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.document-preview-card-body .document-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: hsl(219, 30%, 30%);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-preview-card-body .document-status {
    display: flex;
    align-items: center;
}

.document-preview-card-body .document-status .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* ========================================
   VERIFIED DOCUMENTS GRID - Profile Page
   ======================================== */

.documents-verified-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

@media (max-width: 576px) {
    .documents-verified-grid {
        grid-template-columns: 1fr;
    }
}

.document-verified-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.document-verified-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 67, 171, 0.15);
    border-color: #0a43ab;
}

.document-preview-area {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.document-preview-area .document-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.document-verified-card:hover .document-thumbnail {
    transform: scale(1.05);
}

.document-pdf-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dc3545;
    gap: 8px;
}

.document-pdf-icon svg {
    stroke: #dc3545;
}

.document-pdf-icon .pdf-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    padding: 2px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.document-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 67, 171, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.document-verified-card:hover .document-overlay {
    opacity: 1;
}

.document-overlay svg {
    stroke: #fff;
}

.document-overlay span {
    font-size: 0.875rem;
    font-weight: 500;
}

.document-info-area {
    padding: 16px;
    border-top: 1px solid #f1f5f9;
}

.document-info-area .document-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0 0 8px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.document-info-area .document-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

.document-info-area .document-status.verified {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.document-info-area .document-status.verified svg {
    stroke: #059669;
}

.no-documents-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 48px 24px;
    color: #94a3b8;
}

.no-documents-message svg {
    stroke: #cbd5e1;
    margin-bottom: 16px;
}

.no-documents-message p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Anunturi Transport Types Badges */
.tipuri-transport-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.tipuri-transport-badges .badge {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.75rem;
    border-radius: 14px;
    background: #f8fafd !important;
    color: #0c50ce;
    border: 1px solid #aac1ec;
}

.anunt-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.anunt-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.anunt-card.anunt-expirat {
    background-color: #f8f9fa;
    opacity: 0.85;
}

.anunt-card .card-body {
    padding: 1.25rem;
}

.anunt-details p {
    color: #4a5568;
}

.anunt-details strong {
    color: #1a1a2e;
}

/* Modal Anunt Redesign */
.modal-anunt-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.modal-anunt-header {
    background: linear-gradient(135deg, #091057 0%, #1a237e 100%);
    padding: 1.5rem 2rem;
    border: none;
}

.modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.modal-anunt-header .modal-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.modal-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0.25rem 0 0 0;
}

.modal-anunt-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-anunt-header .btn-close:hover {
    opacity: 1;
}

.modal-anunt-body {
    padding: 1.5rem 2rem;
    max-height: 65vh;
    overflow-y: auto;
}

.anunt-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.anunt-section:last-of-type {
    border-bottom: none;
    margin-bottom: 1rem;
}

.section-header {
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.section-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}

.section-description {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0.25rem 0 0 0;
}

.selected-count {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #2e7d32;
    display: inline-flex;
    align-items: center;
}

.selected-count .count-number {
    font-weight: 700;
    font-size: 1rem;
}

.selected-count.empty {
    background: #f8f9fa;
    color: #6c757d;
}

/* Cursa Types */
.cursa-types-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cursa-type-option {
    flex: 1;
    min-width: 120px;
}

.cursa-type-option input[type="radio"] {
    display: none;
}

.cursa-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.cursa-type-card:hover {
    border-color: #667eea;
    background: #f0f4ff;
}

.cursa-type-option input[type="radio"]:checked+.cursa-type-card {
    border-color: #091057;
    background: linear-gradient(135deg, rgba(9, 16, 87, 0.05) 0%, rgba(102, 126, 234, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(9, 16, 87, 0.15);
}

.cursa-type-option input[type="radio"]:checked+.cursa-type-card .cursa-icon {
    background: linear-gradient(135deg, #091057 0%, #1a237e 100%);
    color: white;
}

.cursa-icon {
    width: 48px;
    height: 48px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.cursa-name {
    font-weight: 500;
    color: #1a1a2e;
    font-size: 0.9rem;
}

/* Textarea */
.anunt-textarea {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.9rem;
    resize: none;
    transition: all 0.3s ease;
}

.anunt-textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Info Banner */
.anunt-info-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 12px;
    font-size: 0.85rem;
    color: #1565c0;
}

.anunt-info-banner i {
    font-size: 1.25rem;
}

/* Footer */
.modal-anunt-footer {
    background: #f8f9fa;
    padding: 1rem 2rem;
    border: none;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.btn-cancel {
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-weight: 500;
}

.btn-publish {
    padding: 0.6rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    background: linear-gradient(135deg, #091057 0%, #1a237e 100%);
    border: none;
    box-shadow: 0 4px 12px rgba(9, 16, 87, 0.3);
    transition: all 0.3s ease;
}

.btn-publish:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 16, 87, 0.4);
}

.btn-publish:disabled {
    opacity: 0.7;
    transform: none;
}

@media (max-width: 576px) {
    .modal-anunt-body {
        padding: 1rem;
    }

    .modal-anunt-header {
        padding: 1rem;
    }

    .modal-anunt-footer {
        padding: 1rem;
    }

    .cursa-types-container {
        flex-direction: column;
    }

    .cursa-type-option {
        min-width: 100%;
    }
}

/* Enhanced Dashboard Styles */
.account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

.activity-card,
.quick-actions-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.activity-card .card-header,
.quick-actions-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: none;
    background: linear-gradient(135deg, #0a43ab 0%, #0f5cd8 100%);
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
}

.activity-card .card-header::before,
.quick-actions-card .card-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.activity-card .card-header::after,
.quick-actions-card .card-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

.card-title svg {
    color: rgba(255, 255, 255, 0.9);
}

.view-all-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

.view-all-link:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
}

/* Activity List */
.activity-list {
    padding: 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    transition: background 0.2s ease;
    margin-bottom: 8px;
}

.activity-item:last-child {
    margin-bottom: 0;
}

.activity-item:hover {
    background: #f8f9fa;
}

.activity-item.unread-item {
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
    border-left: 3px solid #0a43ab;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon svg {
    width: 20px;
    height: 20px;
}

.activity-icon.completed {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #28a745;
}

.activity-icon.pending {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    color: #856404;
}

.activity-icon.info {
    background: linear-gradient(135deg, #e7f1ff 0%, #d0e3ff 100%);
    color: #0a43ab;
}

.activity-content {
    flex: 1;
    min-width: 0;
}

.activity-title {
    font-size: 0.925rem;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-time {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 0;
}

.activity-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.activity-badge.unread-badge {
    background: linear-gradient(135deg, #0a43ab 0%, #0f5cd8 100%);
    color: #fff;
}

/* Company Cards - New Design */
.suggested-companies-container {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
}

.suggested-companies-container::-webkit-scrollbar {
    width: 6px;
}

.suggested-companies-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.suggested-companies-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.suggested-companies-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.company-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafd 100%);
    border: 1px solid #e8eef6;
    border-radius: 14px;
    padding: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0a43ab 0%, #0f5cd8 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-card:hover {
    border-color: #c8d6eb;
    box-shadow: 0 8px 24px rgba(10, 67, 171, 0.12);
    transform: translateY(-2px);
}

.company-card:hover::before {
    opacity: 1;
}

.company-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.company-avatar {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0a43ab 0%, #0f5cd8 100%);
    box-shadow: 0 4px 12px rgba(10, 67, 171, 0.25);
}

.company-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.company-header-info {
    flex: 1;
    min-width: 0;
}

.company-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.company-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #6c757d;
}

.company-location svg {
    color: #0a43ab;
    flex-shrink: 0;
}

.company-transport-types {
    margin-bottom: 14px;
}

.transport-types-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #28a745;
    font-weight: 500;
    margin-bottom: 10px;
}

.transport-types-label svg {
    flex-shrink: 0;
}

.transport-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.transport-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    background: linear-gradient(135deg, #e7f1ff 0%, #d0e3ff 100%);
    color: #0a43ab;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(10, 67, 171, 0.1);
    transition: all 0.2s ease;
}

.transport-badge:hover {
    background: linear-gradient(135deg, #d0e3ff 0%, #b8d4ff 100%);
    transform: scale(1.02);
}

.transport-badge.more-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    border-color: #dee2e6;
}

.company-card-actions {
    display: flex;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #e8eef6;
}

.company-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-action-btn svg {
    flex-shrink: 0;
}

.view-profile-btn {
    flex: 1;
    background: linear-gradient(135deg, #f0f4ff 0%, #e7f1ff 100%);
    color: #0a43ab;
    border: 1px solid rgba(10, 67, 171, 0.15);
}

.view-profile-btn:hover {
    background: linear-gradient(135deg, #0a43ab 0%, #0f5cd8 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(10, 67, 171, 0.35);
    transform: translateY(-1px);
}

.call-btn {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.call-btn:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transform: translateY(-1px);
}

@media (max-width: 576px) {
    .company-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .company-card-actions {
        flex-direction: column;
    }

    .view-profile-btn,
    .call-btn {
        width: 100%;
    }
}

/* Empty State */
.empty-activity {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.empty-activity .sumar-empty-icon {
    margin-bottom: 16px;
    color: #adb5bd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 50%;
}

.empty-activity p {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    margin: 0 0 8px 0;
}

.empty-activity .empty-hint {
    font-size: 0.85rem;
    color: #6c757d;
    display: block;
    margin-bottom: 16px;
}

.btn-empty-action {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #0a43ab 0%, #0f5cd8 100%);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-empty-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 67, 171, 0.4);
    color: #fff;
}

/* Quick Actions Section */
.quick-actions-section {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 20px 0;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.quick-action-btn:hover {
    background: linear-gradient(135deg, #0a43ab 0%, #0f5cd8 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 67, 171, 0.3);
}

.quick-action-btn .action-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0a43ab 0%, #0f5cd8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(10, 67, 171, 0.35);
}

.quick-action-btn .action-icon svg {
    stroke: #fff;
    color: #fff;
}

.quick-action-btn:hover .action-icon {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.quick-action-btn span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #495057;
    transition: color 0.2s ease;
}

.quick-action-btn:hover span {
    color: #fff;
}

/* Reveal Phone Button States */
.btn-reveal-phone {
    border: none;
    cursor: pointer;
    flex: 1;
}

.btn-reveal-phone .loader-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.btn-reveal-phone.revealing {
    opacity: 0.8;
    pointer-events: none;
}

.btn-reveal-phone.revealing .btn-text {
    animation: pulse-text 1s ease-in-out infinite;
}

@keyframes pulse-text {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.btn-reveal-phone.revealed {
    background: linear-gradient(135deg, #0a43ab 0%, #0f5cd8 100%);
    cursor: pointer;
}

.btn-reveal-phone.revealed:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    transform: translateY(-1px);
}

.btn-reveal-phone.revealed .btn-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Reveal Phone Button for Search Results */
.phone-reveal-wrapper {
    position: relative;
}

.btn-reveal-phone-search {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.btn-reveal-phone-search:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
    transform: translateY(-1px);
}

.btn-reveal-phone-search .loader-icon {
    animation: spin 1s linear infinite;
}

.btn-reveal-phone-search.revealing {
    opacity: 0.8;
    pointer-events: none;
}

.btn-reveal-phone-search.revealing .btn-text {
    animation: pulse-text 1s ease-in-out infinite;
}

.btn-reveal-phone-search.revealed {
    background: linear-gradient(135deg, #0a43ab 0%, #0f5cd8 100%);
    box-shadow: 0 2px 8px rgba(10, 67, 171, 0.3);
    cursor: pointer;
}

.btn-reveal-phone-search.revealed:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    transform: translateY(-1px);
}

.btn-reveal-phone-search.revealed .btn-text {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.section-title-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-icon-circle {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.section-icon-circle.drivers {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.section-icon-circle.dispatchers {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.notification-count {
    background: #ef4444;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 50px;
    min-width: 22px;
    text-align: center;
}

.btn-view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-view-all:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

/* Notifications Section */
.notifications-section-full {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.notifications-list-modern {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.notification-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fbff;
    border-radius: 12px;
    transition: all 0.2s ease;
    border-left: 3px solid #3b82f6;
}

.notification-item-modern:hover {
    background: #f1f5f9;
}

.notification-item-modern.unread {
    background: #eff6ff;
    border-left: 3px solid #3b82f6;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon.info {
    background: #e0f2fe;
    color: #0284c7;
}

.notification-icon.contact {
    background: #f0fdf4;
    color: #16a34a;
}

.notification-icon.search {
    background: #fef3c7;
    color: #d97706;
}

.notification-icon svg {
    width: 20px;
    height: 20px;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-text {
    font-size: 0.95rem;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-time {
    font-size: 0.8rem;
    color: #94a3b8;
}

.notification-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.empty-notifications {
    text-align: center;
    padding: 2rem;
}

.empty-notifications .empty-icon {
    position: static;
    inset: unset;
    background: none;
    border-radius: 0;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.empty-notifications h4 {
    font-size: 1rem;
    color: #475569;
    margin: 0 0 0.5rem 0;
}

.empty-notifications p {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0;
}

/* Suggested Section */
.suggested-section {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.person-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.person-box:hover {
    border-color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.person-box-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.person-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.avatar-placeholder.driver {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.avatar-placeholder.dispatcher {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.person-info {
    flex: 1;
    min-width: 0;
}

.person-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.125rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.person-role {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.person-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.person-badges-wrapper {
    margin-bottom: 1rem;
}

.person-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.type-badge {
    background: #e0f2fe;
    color: #0284c7;
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.person-badges .hidden-badge {
    display: none;
}

.person-badges.expanded .hidden-badge {
    display: inline-block;
}

.toggle-badges-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #3b82f6;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-badges-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.btn-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: #fff;
    border: none;
    padding: 0.625rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.empty-people {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem;
}

.empty-people .empty-icon {
    position: static;
    inset: unset;
    background: none;
    border-radius: 0;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.empty-people h4 {
    font-size: 1rem;
    color: #475569;
    margin: 0 0 0.5rem 0;
}

.empty-people p {
    font-size: 0.875rem;
    color: #94a3b8;
    margin: 0 0 1rem 0;
}

.btn-complete-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3b82f6;
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-complete-profile:hover {
    background: #1d4ed8;
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .people-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .people-grid {
        grid-template-columns: 1fr;
    }

    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.faq-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0f7ff 100%);
    overflow: hidden;
}

/* Animated Background Shapes */
.faq-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.faq-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: faqFloat 20s ease-in-out infinite;
}

.faq-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(11, 68, 175, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.faq-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(243, 207, 27, 0.12) 0%, rgba(251, 191, 36, 0.08) 100%);
    bottom: -50px;
    left: -100px;
    animation-delay: -7s;
}

.faq-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(11, 68, 175, 0.1) 0%, rgba(99, 102, 241, 0.08) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes faqFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(20px, 30px) scale(1.02);
    }
}

/* Section Header */
.faq-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(11, 68, 175, 0.1) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(11, 68, 175, 0.15);
    color: #0b44af;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    backdrop-filter: blur(10px);
}

.faq-badge svg {
    opacity: 0.8;
}

.titlu-sectiune {
    font-size: 2.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.subtitlu-sectiune {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: initial;
}

/* FAQ Container Layout */
.faq-container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(11, 68, 175, 0.06);
}

.faq-item:hover {
    box-shadow: 0 8px 40px rgba(11, 68, 175, 0.12);
    transform: translateY(-2px);
    border-color: rgba(11, 68, 175, 0.15);
}

.faq-item.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.9) 100%);
    border-color: rgba(11, 68, 175, 0.2);
    box-shadow: 0 12px 48px rgba(11, 68, 175, 0.15);
}

/* Question Button */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(11, 68, 175, 0.02);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(11, 68, 175, 0.25);
    transition: all 0.3s ease;
}

.faq-item.active .faq-number {
    background: linear-gradient(135deg, #f3cf1b 0%, #fbbf24 100%);
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(243, 207, 27, 0.35);
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-text {
    color: #0b44af;
}

/* Icon Animation */
.faq-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 68, 175, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover .faq-icon {
    background: rgba(11, 68, 175, 0.12);
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, #0b44af 0%, #3b82f6 100%);
    box-shadow: 0 4px 12px rgba(11, 68, 175, 0.3);
}

.faq-icon svg {
    color: #0b44af;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon svg {
    color: #fff;
}

.faq-icon-plus {
    position: absolute;
    opacity: 1;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-minus {
    position: absolute;
    opacity: 0;
    transform: rotate(-90deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

/* Answer Panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 1.75rem 1.75rem 5rem;
}

.faq-answer-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}

/* CTA Card */
.faq-cta-card {
    background: linear-gradient(135deg, #0b44af 0%, #1e40af 50%, #3b82f6 100%);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    position: sticky;
    top: 100px;
    box-shadow: 0 20px 60px rgba(11, 68, 175, 0.3);
    overflow: hidden;
}

.faq-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.faq-cta-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    position: relative;
}

.faq-cta-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
    position: relative;
}

.faq-cta-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.75rem;
    line-height: 1.6;
    position: relative;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #fff;
    color: #0b44af;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: #0b44af;
}

.faq-cta-btn svg {
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-container {
        grid-template-columns: 1fr;
    }

    .faq-cta-card {
        position: relative;
        top: auto;
        max-width: 480px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0;
    }

    .titlu-sectiune {
        font-size: 2rem;
    }

    .subtitlu-sectiune {
        font-size: 1rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question-content {
        gap: 1rem;
    }

    .faq-number {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
        border-radius: 10px;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem 3.5rem;
    }

    .faq-icon {
        width: 36px;
        height: 36px;
    }

    .faq-cta-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-question-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem;
    }
}

/* ============================================
   MODAL ADAUGA ANUNT TRANSPORTATOR - STYLES
   ============================================ */

.modal-anunt-transportator {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

/* Modal Header */
.modal-header-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    padding: 1.75rem 2rem;
    border: none;
}

.modal-icon-pulse {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-icon-pulse i {
    font-size: 1.75rem;
    color: #fff;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    animation: pulse-modal 2s ease-out infinite;
}

@keyframes pulse-modal {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.modal-header-gradient .modal-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.modal-header-gradient .modal-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin: 0.25rem 0 0 0;
}

/* Modal Body */
.modal-body-modern {
    padding: 2rem;
    background: #f8fafc;
}

.form-section {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.section-header-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.section-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon-wrapper i {
    font-size: 1.1rem;
    color: #fff;
}

.section-icon-wrapper.bg-purple {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
}

.section-icon-wrapper.bg-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.section-icon-wrapper.bg-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.section-title-modern {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.required-star {
    color: #ef4444;
}

.section-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

/* Transport Grid */
.transport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
}

.transport-option-card {
    cursor: pointer;
}

.transport-option-card input {
    display: none;
}

.transport-card-inner {
    position: relative;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.transport-card-inner:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.transport-option-card input:checked+.transport-card-inner {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-color: transparent;
}

.transport-option-card input:checked+.transport-card-inner .transport-card-icon,
.transport-option-card input:checked+.transport-card-inner .transport-card-name {
    color: #fff;
}

.transport-card-icon {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.transport-card-name {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #334155;
    transition: color 0.3s ease;
}

.transport-check-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.transport-check-indicator i {
    font-size: 0.7rem;
    color: #3b82f6;
}

.transport-option-card input:checked+.transport-card-inner .transport-check-indicator {
    opacity: 1;
    transform: scale(1);
}

/* Textarea */
.textarea-modern-wrapper {
    position: relative;
}

.textarea-modern {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    font-size: 0.95rem;
    resize: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.textarea-modern:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    outline: none;
}

.textarea-modern::placeholder {
    color: #94a3b8;
}

.textarea-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

/* Info Banner */
.info-banner-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    padding: 1.25rem;
    border-left: 4px solid #f59e0b;
}

.info-banner-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-banner-icon i {
    color: #b45309;
    font-size: 1.1rem;
}

.info-banner-content {
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.5;
}

.info-highlight {
    display: inline-block;
    margin-top: 0.5rem;
    color: #92400e;
}

/* Modal Footer */
.modal-footer-modern {
    padding: 1.25rem 2rem;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-publish-modern {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-publish-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: #fff;
}

/* Responsive - Modal Transportator */
@media (max-width: 768px) {
    .modal-header-gradient {
        padding: 1.25rem;
    }

    .modal-body-modern {
        padding: 1rem;
    }

    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Account Summary Sections - Unified Professional Design
   For: sumar_sofer, sumar_dispecer, sumar_transportator
   ========================================================================== */

/* Section Headers */
.section-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-title-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-icon-circle {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px hsla(219, 89%, 34%, 0.25);
}

.section-icon-circle.companies,
.section-icon-circle.drivers,
.section-icon-circle.dispatchers {
    background: var(--gradient-primary);
}

.section-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0;
    letter-spacing: -0.02em;
}

.notification-count {
    background: hsl(0, 84%, 60%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.625rem;
    border-radius: 50px;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 6px hsla(0, 84%, 60%, 0.3);
}

.btn-view-all,
.btn-view-all-priority {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.25s ease;
    background: transparent;
}

.btn-view-all:hover,
.btn-view-all-priority:hover {
    background: hsla(219, 89%, 34%, 0.08);
    color: var(--primary-light);
    transform: translateX(2px);
}

.btn-view-all svg,
.btn-view-all-priority svg {
    transition: transform 0.25s ease;
}

.btn-view-all:hover svg,
.btn-view-all-priority:hover svg {
    transform: translateX(3px);
}

/* Contact Approval Priority Section */
.contact-approval-priority-section {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px hsla(219, 89%, 34%, 0.08);
    border: 1px solid var(--border);
}

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

.priority-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.priority-text {
    flex: 1;
}

.priority-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.25rem 0;
}

.priority-text p {
    font-size: 0.9rem;
    color: hsl(215, 16%, 47%);
    margin: 0;
}

.contact-request-card-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: hsl(219, 30%, 96%);
    border-radius: 12px;
    margin-bottom: 0.75rem;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.contact-request-card-compact:hover {
    background: hsl(210, 40%, 96%);
    border-color: var(--border);
    transform: translateX(4px);
}

.contact-request-avatar-compact {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-request-avatar-compact img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-request-avatar-compact .avatar-placeholder {
    width: 100%;
    height: 100%;
    background: hsla(219, 89%, 34%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-request-info-compact {
    flex: 1;
    min-width: 0;
}

.requester-name-compact {
    font-size: 0.95rem;
    font-weight: 600;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.25rem 0;
}

.requester-type-compact {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    background: hsla(219, 89%, 34%, 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.375rem;
}

.contact-request-message-compact {
    font-size: 0.85rem;
    color: hsl(215, 16%, 47%);
    margin: 0.25rem 0;
}

.contact-request-time-compact {
    font-size: 0.75rem;
    color: hsl(214, 14%, 58%);
}

.contact-request-actions-compact {
    display: flex;
    gap: 0.5rem;
}

.btn-approve-contact-compact,
.btn-reject-contact-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-approve-contact-compact {
    background: hsl(142, 71%, 95%);
    color: hsl(142, 76%, 36%);
}

.btn-approve-contact-compact:hover {
    background: hsl(142, 76%, 36%);
    color: #fff;
    transform: scale(1.05);
}

.btn-reject-contact-compact {
    background: hsl(0, 72%, 95%);
    color: hsl(0, 84%, 60%);
}

.btn-reject-contact-compact:hover {
    background: hsl(0, 84%, 60%);
    color: #fff;
    transform: scale(1.05);
}

/* Notifications Section */
.notifications-section-full {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px hsla(219, 89%, 34%, 0.08);
    border: 1px solid var(--border);
}

.notifications-list-modern {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notification-item-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem;
    background: hsl(219, 30%, 96%);
    border-radius: 14px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.notification-item-modern:hover {
    background: hsl(210, 40%, 96%);
    border-color: var(--border);
    transform: translateX(4px);
}

.notification-item-modern.unread {
    background: hsla(219, 89%, 34%, 0.06);
    border-left: 4px solid var(--primary);
}

.notification-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: hsla(219, 89%, 34%, 0.1);
    color: var(--primary);
}

.notification-icon.info,
.notification-icon.contact,
.notification-icon.search {
    background: hsla(219, 89%, 34%, 0.1);
    color: var(--primary);
}

.notification-icon svg {
    width: 22px;
    height: 22px;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.375rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.notification-time {
    font-size: 0.8rem;
    color: hsl(214, 14%, 58%);
    font-weight: 500;
}

.notification-badge {
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.875rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px hsla(219, 89%, 34%, 0.3);
}

.empty-notifications {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-notifications .empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: hsla(219, 89%, 34%, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-notifications .empty-icon svg {
    color: var(--primary);
    opacity: 0.6;
}

.empty-notifications h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.5rem 0;
}

.empty-notifications p {
    font-size: 0.9rem;
    color: hsl(215, 16%, 47%);
    margin: 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Suggested Companies/People Section */
.suggested-companies-section,
.suggested-section {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px hsla(219, 89%, 34%, 0.08);
    border: 1px solid var(--border);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.company-box,
.person-box {
    background: hsl(210, 40%, 98%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.company-box:hover,
.person-box:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px hsla(219, 89%, 34%, 0.15);
    transform: translateY(-4px);
}

.company-box-header,
.person-box-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-logo,
.person-avatar {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.company-logo img,
.person-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-placeholder,
.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: hsla(219, 89%, 34%, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.logo-placeholder svg,
.avatar-placeholder svg {
    opacity: 0.7;
}

.company-info,
.person-info {
    flex: 1;
    min-width: 0;
}

.company-name,
.person-name {
    font-size: 1rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.375rem 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.person-role {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--primary);
    background: hsla(219, 89%, 34%, 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.375rem;
    font-weight: 500;
}

.company-location,
.person-location {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.85rem;
    color: hsl(215, 16%, 47%);
    margin: 0;
    font-weight: 500;
}

.company-location svg,
.person-location svg {
    color: var(--primary);
    opacity: 0.7;
}

.company-badges-wrapper,
.person-badges-wrapper {
    margin-bottom: 1.25rem;
}

.company-badges,
.person-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.type-badge {
    background: hsla(219, 89%, 34%, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: 8px;
    letter-spacing: -0.01em;
}

.company-badges .hidden-badge,
.person-badges .hidden-badge {
    display: none;
}

.company-badges.expanded .hidden-badge,
.person-badges.expanded .hidden-badge {
    display: inline-block;
}

.toggle-badges-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 0.625rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.toggle-badges-link:hover {
    color: var(--primary-light);
}

.btn-contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px hsla(219, 89%, 34%, 0.25);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(219, 89%, 34%, 0.35);
}

.btn-contact:active {
    transform: translateY(0);
}

.empty-companies,
.empty-people {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
}

.empty-companies .empty-icon,
.empty-people .empty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: hsla(219, 89%, 34%, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-companies .empty-icon svg,
.empty-people .empty-icon svg {
    color: var(--primary);
    opacity: 0.6;
}

.empty-companies h4,
.empty-people h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: hsl(222, 47%, 11%);
    margin: 0 0 0.5rem 0;
}

.empty-companies p,
.empty-people p {
    font-size: 0.9rem;
    color: hsl(215, 16%, 47%);
    margin: 0 0 1.25rem 0;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.btn-complete-profile {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--gradient-primary);
    color: #fff;
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px hsla(219, 89%, 34%, 0.25);
}

.btn-complete-profile:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(219, 89%, 34%, 0.35);
    color: #fff;
}

/* Quick Actions Section */
.quick-actions-section {
    background: #fff;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px hsla(219, 89%, 34%, 0.08);
    border: 1px solid var(--border);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: hsl(222, 47%, 11%);
    margin: 0 0 1.25rem 0;
    letter-spacing: -0.02em;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.quick-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.875rem;
    padding: 1.75rem 1rem;
    background: hsl(219, 30%, 96%);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.quick-action-btn:hover {
    background: hsl(210, 40%, 96%);
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: 0 4px 16px hsla(219, 89%, 34%, 0.12);
}

.quick-action-btn .action-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 12px hsla(219, 89%, 34%, 0.25);
    transition: all 0.3s ease;
}

.quick-action-btn:hover .action-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px hsla(219, 89%, 34%, 0.35);
}

.quick-action-btn span {
    font-size: 0.9rem;
    font-weight: 600;
    color: hsl(222, 47%, 11%);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .companies-grid,
    .people-grid {
        grid-template-columns: 1fr;
    }

    .quick-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .notifications-section-full,
    .suggested-companies-section,
    .suggested-section,
    .quick-actions-section,
    .contact-approval-priority-section {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .priority-header {
        flex-wrap: wrap;
    }

    .btn-view-all-priority {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   FORGOT PASSWORD MODAL
   ======================================== */
#modal_parola_uitata .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

#modal_parola_uitata .modal-header {
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem;
}

#modal_parola_uitata .modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

#modal_parola_uitata .modal-body {
    padding: 1.5rem;
}

#modal_parola_uitata .modal-body p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

#modal_parola_uitata .form-group {
    margin-bottom: 0;
}

#modal_parola_uitata .form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

#modal_parola_uitata .form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
}

#modal_parola_uitata .form-input:focus {
    outline: none;
    border-color: #0a40a4;
    box-shadow: 0 0 0 3px rgba(10, 64, 164, 0.1);
}

#raspuns_resetare_parola .alert {
    margin-bottom: 0;
    border-radius: 8px;
    font-size: 0.9rem;
}

#raspuns_resetare_parola .alert-success {
    background-color: #d1fae5;
    border-color: #6ee7b7;
    color: #065f46;
}

#modal_parola_uitata .modal-footer {
    border-top: 1px solid #e5e7eb;
    padding: 1rem 1.5rem;
}

#modal_parola_uitata .btn-secondary {
    background-color: #f3f4f6;
    color: #374151;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

#modal_parola_uitata .btn-secondary:hover {
    background-color: #e5e7eb;
}

#modal_parola_uitata .btn-primary {
    background-color: #0a40a4;
    color: #ffffff;
    border: none;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

#modal_parola_uitata .btn-primary:hover {
    background-color: #083080;
}

#modal_parola_uitata .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ========================================
   RESET PASSWORD PAGE
   ======================================== */
.form-section .loading-overlay {
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.form-section .loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #e5e7eb;
    border-top-color: #0a40a4;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

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

.form-section .loading-overlay h4 {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.activare-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.activare-container.hide {
    display: none;
}

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

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.form-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-group-section {
    margin-bottom: 1.5rem;
}

.form-group-section .col-12 {
    margin-bottom: 1rem;
}

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

.form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s;
    background-color: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: #0a40a4;
    box-shadow: 0 0 0 3px rgba(10, 64, 164, 0.1);
}

.form-input:disabled {
    background-color: #f9fafb;
    color: #6b7280;
    cursor: not-allowed;
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
}

#succes_resetare.hide {
    display: none;
}

#succes_resetare .alert {
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#succes_resetare .alert-success {
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #065f46;
}

#succes_resetare .icon {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

#succes_resetare h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

#resetare_response {
    margin-top: 1rem;
}

#resetare_response .alert {
    border-radius: 8px;
    padding: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .activare-container {
        margin: 1rem;
        padding: 1.5rem;
    }

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

    #modal_parola_uitata .modal-dialog {
        margin: 1rem;
    }
}

/* ==========================================================================
   Section Title Classes - Homepage
   ========================================================================== */

.titlu-sectiune {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .titlu-sectiune {
        font-size: 3rem;
    }
}

.subtitlu-sectiune {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==========================================================================
   FAQ Section - Homepage
   ========================================================================== */

.faq-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.faq-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
}

.faq-shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.faq-shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: -50px;
    left: -50px;
}

.faq-shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-header .section-title {
    position: relative;
    display: inline-block;
}

.faq-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .faq-container {
        grid-template-columns: 2fr 1fr;
        gap: 3rem;
    }
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(10, 61, 165, 0.1);
    border-color: rgba(10, 61, 165, 0.15);
}

.faq-item.active {
    box-shadow: 0 8px 32px rgba(10, 61, 165, 0.12);
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(10, 61, 165, 0.02);
}

.faq-question-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 10px;
    flex-shrink: 0;
}

.faq-item.active .faq-number {
    background: var(--gradient-accent);
    color: var(--primary);
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.4;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(10, 61, 165, 0.08);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-icon-plus {
    display: block;
}

.faq-icon-minus {
    display: none;
}

.faq-item.active .faq-icon {
    background: var(--primary);
}

.faq-item.active .faq-icon svg {
    color: white;
}

.faq-item.active .faq-icon-plus {
    display: none;
}

.faq-item.active .faq-icon-minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem 4.5rem;
}

.faq-answer-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted-foreground);
    margin: 0;
}

/* FAQ CTA Card */
.faq-cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
    text-align: center;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 40px rgba(10, 61, 165, 0.3);
    overflow: hidden;
}

.faq-cta-card::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%);
    pointer-events: none;
}

.faq-cta-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.faq-cta-icon svg {
    color: white;
}

.faq-cta-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.faq-cta-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(243, 207, 27, 0.3);
}

.faq-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(243, 207, 27, 0.4);
}

.faq-cta-btn svg {
    transition: transform 0.3s ease;
}

.faq-cta-btn:hover svg {
    transform: translateX(4px);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-answer-content {
        padding: 0 1.25rem 1.25rem 3.5rem;
    }

    .faq-cta-card {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }
}

/* ============================================
   REFERRAL SECTION
   ============================================ */

/* Referral Link Card */
.referral-link-card {
    background: linear-gradient(135deg, #091057 0%, #1a237e 100%);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    box-shadow: 0 8px 32px rgba(9, 16, 87, 0.25);
}

.referral-link-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.referral-link-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.referral-link-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.35rem 0;
    color: #fff;
}

.referral-link-content p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* Link Input Group */
.referral-link-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.referral-link-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #fff;
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    outline: none;
}

.referral-link-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.referral-copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.referral-copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Referral Code Display */
.referral-code-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.referral-code-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.referral-code-value {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: hsl(50, 90%, 53%);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 14px;
    border-radius: 8px;
}

/* Share Buttons */
.referral-share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.referral-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.referral-share-whatsapp {
    background: #25D366;
    color: #fff;
}

.referral-share-whatsapp:hover {
    background: #1fb855;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.referral-share-email {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.referral-share-email:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-2px);
}

.referral-share-copy {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.referral-share-copy:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* Stats Row */
.referral-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.referral-stat-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.referral-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.referral-stat-card .stat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.referral-stat-card .stat-icon.blue {
    background: linear-gradient(135deg, #4F9CF9 0%, #3A7BD5 100%);
}

.referral-stat-card .stat-icon.green {
    background: linear-gradient(135deg, #56CCF2 0%, #2D9CDB 100%);
}

.referral-stat-card .stat-icon.yellow {
    background: linear-gradient(135deg, hsl(50, 90%, 53%) 0%, hsl(45, 85%, 48%) 100%);
}

.referral-stat-card .stat-info {
    display: flex;
    flex-direction: column;
}

.referral-stat-card .stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.referral-stat-card .stat-label {
    font-size: 0.825rem;
    color: hsl(219, 20%, 50%);
    margin-top: 2px;
}

/* How It Works */
.referral-how-it-works {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.referral-how-it-works .section-subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.25rem 0;
}

.referral-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.referral-step {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    background: hsl(219, 30%, 97%);
    border-radius: 12px;
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #091057 0%, #1a237e 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 0.925rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.step-content p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.referral-step-divider {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: #cbd5e1;
}

/* Referral List Section */
.referral-list-section {
    background: #fff;
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.referral-table-wrapper {
    margin-top: 1rem;
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.referral-table {
    width: 100%;
    border-collapse: collapse;
}

.referral-table thead th {
    background: hsl(219, 30%, 97%);
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.referral-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.referral-table tbody tr:last-child {
    border-bottom: none;
}

.referral-table tbody tr:hover {
    background: hsl(219, 30%, 98%);
}

.referral-table tbody td {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: #334155;
    vertical-align: middle;
}

/* User Cell in Table */
.referral-user-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.referral-user-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(219, 89%, 34%) 0%, hsl(219, 89%, 45%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.referral-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.referral-user-name {
    font-weight: 600;
    color: #1e293b;
}

/* Badges */
.referral-type-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    background: hsl(219, 30%, 95%);
    color: hsl(219, 89%, 34%);
}

.referral-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.referral-status-badge.active {
    background: #ecfdf5;
    color: #059669;
}

.referral-status-badge.active::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #059669;
}

.referral-status-badge.pending {
    background: #fffbeb;
    color: #d97706;
}

.referral-status-badge.pending::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d97706;
}

.referral-date {
    color: #64748b;
    font-size: 0.85rem;
}

/* Empty State */
.referral-empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.referral-empty-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.25rem;
    background: hsl(219, 30%, 96%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(219, 20%, 65%);
}

.referral-empty-state h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
}

.referral-empty-state p {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .referral-link-card {
        padding: 1.5rem;
    }

    .referral-link-card-inner {
        flex-direction: column;
        gap: 0.75rem;
    }

    .referral-link-input-group {
        flex-direction: column;
    }

    .referral-copy-btn {
        justify-content: center;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .referral-stats-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .referral-steps {
        flex-direction: column;
        gap: 0.75rem;
    }

    .referral-step-divider {
        transform: rotate(90deg);
        padding: 0;
    }

    .referral-share-buttons {
        flex-direction: column;
    }

    .referral-share-btn {
        justify-content: center;
    }

    .referral-table thead {
        display: none;
    }

    .referral-table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid #e9ecef;
    }

    .referral-table tbody td {
        padding: 4px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .referral-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.8rem;
        color: #64748b;
        text-transform: uppercase;
    }
}

@media (max-width: 576px) {
    .referral-link-card {
        padding: 1.25rem;
    }

    .referral-link-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 10px;
    }

    .referral-link-content h3 {
        font-size: 1.1rem;
    }

    .referral-stat-card {
        padding: 1rem;
    }

    .referral-stat-card .stat-number {
        font-size: 1.35rem;
    }

    .referral-how-it-works {
        padding: 1.25rem;
    }

    .referral-list-section {
        padding: 1.25rem;
    }
}