/* Assuva Savunma Sanayi Job Application Platform - Custom Styles */

/* Mobile First Responsive Design */
@media (max-width: 768px) {
    /* Mobile Typography */
    h1 { font-size: 1.8rem !important; }
    h2 { font-size: 1.5rem !important; }
    h3 { font-size: 1.3rem !important; }
    h4 { font-size: 1.2rem !important; }
    h5 { font-size: 1.1rem !important; }
    h6 { font-size: 1rem !important; }
    
    /* Mobile Cards - Compact but readable */
    .card {
        margin-bottom: 12px;
        border-radius: 12px;
        padding: 8px;
    }
    
    .card-body {
        padding: 12px !important;
    }
    
    .card-header {
        padding: 8px 12px !important;
        font-size: 0.9rem;
    }
    
    /* Mobile Grid - 2 columns max */
    .row .col-lg-6,
    .row .col-md-6 {
        margin-bottom: 12px;
    }
    
    /* Mobile Buttons */
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
        margin: 4px;
    }
    
    .btn-sm {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* Mobile Forms */
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }
    
    /* Mobile Alerts */
    .alert {
        padding: 10px 12px;
        margin-bottom: 12px;
        border-radius: 8px;
        font-size: 0.9rem;
    }
    
    /* Mobile Tables */
    .table-responsive {
        font-size: 0.8rem;
    }
    
    /* Mobile Images */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Mobile Icons */
    .fa-2x { font-size: 1.5em !important; }
    .fa-3x { font-size: 2em !important; }
    .fa-4x { font-size: 2.5em !important; }
    .fa-5x { font-size: 3em !important; }
    
    /* Mobile Spacing */
    .mb-4 { margin-bottom: 12px !important; }
    .mb-3 { margin-bottom: 8px !important; }
    .mb-2 { margin-bottom: 6px !important; }
    .mt-4 { margin-top: 12px !important; }
    .mt-3 { margin-top: 8px !important; }
    .mt-2 { margin-top: 6px !important; }
    
    .p-4 { padding: 12px !important; }
    .p-3 { padding: 8px !important; }
    .p-2 { padding: 6px !important; }
    
    /* Mobile Container */
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    /* Mobile Content Boxes */
    .content-box {
        padding: 8px !important;
        margin-bottom: 8px;
    }
    
    /* Mobile List Items */
    .list-unstyled li {
        margin-bottom: 4px;
        font-size: 0.9rem;
    }
    
    /* Mobile Badges */
    .badge {
        font-size: 0.75rem;
        padding: 4px 8px;
        border-radius: 6px;
    }
    
    /* Mobile Navbar */
    .navbar-brand-text {
        font-size: 0.8rem;
    }
    
    .navbar-brand-text .company-name {
        font-size: 1.2rem;
    }
    
    .navbar-brand-text .company-subtitle {
        font-size: 0.7rem;
    }
    
    .navbar-nav .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .navbar-nav .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 2px;
    }
    
    .dropdown-menu {
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: auto !important;
        width: 200px !important;
        margin-top: 4px;
        background-color: rgba(0, 0, 0, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 1050;
        display: none !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    /* Force visibility when show class is present */
    .dropdown-menu[style*="display: block"] {
        display: block !important;
    }
    
    .dropdown-item {
        padding: 10px 16px;
        font-size: 0.9rem;
        color: white !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        white-space: nowrap;
    }
    
    .dropdown-item:hover {
        background-color: var(--orange-bright) !important;
        color: white !important;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    /* Mobile dropdown positioning */
    .navbar-nav .dropdown {
        position: relative;
    }
    
    .navbar-nav .dropdown-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: auto !important;
        width: 200px !important;
        margin-top: 4px;
    }
    
    /* Ensure dropdown stays within navbar */
    .navbar-collapse {
        overflow: visible !important;
    }
    
    .navbar-nav {
        overflow: visible !important;
    }
    
    /* Mobile User Menu */
    .user-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .user-avatar {
        margin-bottom: 4px;
    }
    
    .user-name {
        font-size: 0.8rem;
    }
    
    /* Mobile Logo */
    .logo-image {
        max-height: 30px;
        width: auto;
    }
    
    /* Mobile Hamburger */
    .hamburger {
        width: 24px;
        height: 18px;
    }
    
    .hamburger-line {
        height: 2px;
        background-color: white;
        margin: 3px 0;
        transition: 0.3s;
    }
    
    /* Mobile Footer */
    footer {
        padding: 20px 0 !important;
    }
    
    footer .col-lg-4,
    footer .col-md-6 {
        margin-bottom: 20px;
    }
    
    footer h5 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    footer p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    footer .social-links a {
        font-size: 1.2rem;
        margin-right: 12px;
    }
    
    footer .contact-info div {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
    
    footer .list-unstyled li {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }
    
    /* Mobile Copyright */
    footer .text-center {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid #495057;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    /* Extra Small Mobile */
    .container {
        padding-left: 4px;
        padding-right: 4px;
    }
    
    .card {
        margin-bottom: 8px;
        padding: 4px;
    }
    
    .card-body {
        padding: 8px !important;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 2px;
    }
    
    h1 { font-size: 1.5rem !important; }
    h2 { font-size: 1.3rem !important; }
    h3 { font-size: 1.2rem !important; }
    
    /* Extra Small Mobile Footer */
    footer {
        padding: 15px 0 !important;
    }
    
    footer h5 {
        font-size: 1rem;
    }
    
    footer p {
        font-size: 0.8rem;
    }
    
    footer .social-links a {
        font-size: 1rem;
        margin-right: 8px;
    }
    
    footer .contact-info div {
        font-size: 0.8rem;
    }
}

:root {
    /* Assuva Renk Paleti */
    --primary-color: #F26522;      /* Ana turuncu */
    --orange-bright: #F26522;      /* Parlak turuncu */
    --orange-light: #FF7A3D;       /* Açık turuncu */
    --orange-dark: #D54A0F;        /* Koyu turuncu */
    --orange-darker: #B83D0A;      /* Daha koyu turuncu */
    --orange-lighter: #FF9A66;     /* En açık turuncu */
    
    /* Siyah Tonları */
    --black-primary: #000000;      /* Ana siyah */
    --black-light: #1a1a1a;        /* Açık siyah */
    --black-dark: #000000;         /* Koyu siyah */
    --black-darker: #000000;       /* Daha koyu siyah */
    --black-lighter: #333333;      /* En açık siyah */
    
    /* Mavi Tonları (Logo için) */
    --blue-dark: #1E3A8A;          /* Koyu mavi */
    --blue-medium: #3B82F6;        /* Orta mavi */
    --blue-light: #60A5FA;         /* Açık mavi */
    
    /* Bootstrap Uyumlu Renkler (Assuva Teması) */
    --secondary-color: var(--black-lighter);
    --success-color: var(--orange-dark);
    --danger-color: #DC2626;       /* Kırmızı */
    --warning-color: var(--orange-bright);
    --info-color: var(--blue-medium);
    --light-color: #f8f9fa;
    --dark-color: var(--black-primary);
    --dark-text: var(--black-primary);
    
    /* Ek Renkler */
    --accent-orange: var(--orange-bright);
    --accent-black: var(--black-primary);
    --text-light: #ffffff;
    --text-dark: var(--black-primary);
    --border-light: #e9ecef;
    --border-dark: var(--black-lighter);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--black-primary);
    color: var(--text-light);
    min-height: 100vh;
}

/* Başlık Renkleri */
h1, h2, h3, h4, h5, h6 {
    color: var(--orange-bright) !important;
}

/* CV sayfası hero section için özel kural */
.hero-section h1 {
    color: var(--text-light) !important;
}

/* CV sayfasındaki hero section boyutunu sınırla */
.user-cv-page .hero-section {
    min-height: auto !important;
    height: auto !important;
    padding: 40px 20px !important;
}

/* Ana sayfa hero section için özel kural */
.index .hero-section {
    min-height: 100vh;
}

/* Internships sayfası hero section için özel kural */
.internships-page .hero-section {
    min-height: 100vh;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.875rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.625rem;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Logo Styles */
.logo-image {
    height: 80px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    transition: all 0.3s ease;
    margin: -15px 0; /* Navbar'ın üst ve altından taşması için */
}

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

/* Navbar Brand Styles */
.modern-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-brand:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

/* Mobile Logo Responsive */
@media (max-width: 768px) {
    .logo-image {
        height: 70px;
        max-width: 90px;
        margin: -10px 0; /* Mobilde daha az taşma */
    }
}

@media (max-width: 576px) {
    .logo-image {
        height: 60px;
        max-width: 80px;
        margin: -8px 0; /* Küçük ekranlarda daha az taşma */
    }
}

/* Altın Sarısı ve Kömür Grisi Teması */
.hero-section {
    background: transparent;
    color: var(--text-light);
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}


.hero-text {
    position: relative;
    max-width: 1200px;
    width: 100%;
}

.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6 {
    color: var(--orange-bright) !important;
}

.hero-section .hero-text .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ff6600 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle-main {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-light);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border: 2px solid var(--orange-bright);
    color: var(--text-light);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 101, 34, 0.3);
    display: inline-flex;
    align-items: center;
    min-width: 200px;
    justify-content: center;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-bright) 100%);
    border-color: var(--orange-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
    text-decoration: none;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid var(--orange-bright);
    color: var(--orange-bright);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-width: 200px;
    justify-content: center;
}

.btn-hero-outline:hover {
    background: var(--orange-bright);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.3);
    text-decoration: none;
}

/* Scroll Indicator - Kaldırıldı, internships.php'de tanımlandı */

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--black-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-bright);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.feature-card {
    background: var(--black-primary);
    border: 1px solid var(--black-lighter);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-bright);
    box-shadow: 0 15px 35px rgba(242, 101, 34, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.3);
}

.feature-card h4 {
    color: var(--orange-bright);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--black-darker) 0%, var(--black-dark) 100%);
    padding: 5rem 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23F26522" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-bright);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-cta-primary {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border: 2px solid var(--orange-bright);
    color: var(--text-light);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.3);
    display: inline-flex;
    align-items: center;
    min-width: 220px;
    justify-content: center;
}

.btn-cta-primary:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-bright) 100%);
    border-color: var(--orange-dark);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.4);
    text-decoration: none;
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid var(--orange-bright);
    color: var(--orange-bright);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    min-width: 220px;
    justify-content: center;
}

.btn-cta-outline:hover {
    background: var(--orange-bright);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 101, 34, 0.3);
    text-decoration: none;
}


.dark-section {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-dark) 100%);
    color: var(--text-light);
}

.text-golden {
    color: var(--orange-bright) !important;
}

.text-golden-light {
    color: var(--orange-light) !important;
}

.text-golden-dark {
    color: var(--orange-dark) !important;
}

.text-charcoal {
    color: var(--black-lighter) !important;
}

.text-charcoal-light {
    color: var(--black-light) !important;
}

.text-charcoal-dark {
    color: var(--black-dark) !important;
}

.bg-golden {
    background-color: var(--orange-bright) !important;
}

.bg-golden-light {
    background-color: var(--orange-light) !important;
}

.bg-golden-dark {
    background-color: var(--orange-dark) !important;
}

.bg-charcoal {
    background-color: var(--black-lighter) !important;
}

.bg-charcoal-light {
    background-color: var(--black-light) !important;
}

.bg-charcoal-dark {
    background-color: var(--black-dark) !important;
}

/* Navigation */
.navbar-brand {
    font-weight: 600;
}

/* Cards */
.card {
    border: 1px solid var(--black-lighter);
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.15s ease-in-out;
    background: var(--black-light);
    color: var(--text-light);
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
    border-color: var(--orange-bright);
}

.card-header {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    color: var(--text-light);
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

.card-header h4,
.card-header h5,
.card-header h6 {
    color: var(--text-light) !important;
}

/* Buttons */
.btn {
    border-radius: 6px;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border-color: var(--orange-bright);
    color: var(--text-light);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-bright) 100%);
    border-color: var(--orange-dark);
    color: var(--text-light);
}

.btn-outline-primary {
    color: var(--orange-bright);
    border-color: var(--orange-bright);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border-color: var(--orange-bright);
    color: var(--text-light);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border-color: var(--black-lighter);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black-lighter) 100%);
    border-color: var(--black-light);
    color: var(--text-light);
}

.btn-outline-secondary {
    color: var(--black-lighter);
    border-color: var(--black-lighter);
}

.btn-outline-secondary:hover {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border-color: var(--black-lighter);
    color: var(--text-light);
}

/* Forms */
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid var(--black-lighter);
    background: var(--black-light);
    color: var(--text-light);
}

.form-control:focus, .form-select:focus {
    border-color: var(--orange-bright);
    box-shadow: 0 0 0 0.2rem rgba(242, 101, 34, 0.25);
    background: var(--black-light);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--black-lighter);
}

.form-control:focus::placeholder {
    color: var(--black-lighter);
}

/* Tables */
.table {
    background-color: var(--black-light);
    border-radius: 10px;
    overflow: hidden;
    color: var(--text-light);
}

.table thead th {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    color: var(--text-light);
    border-bottom: 2px solid var(--orange-bright);
    font-weight: 600;
}

.table tbody tr {
    border-bottom: 1px solid var(--black-lighter);
}

.table tbody tr:hover {
    background-color: var(--black-lighter);
}

/* Badges */
.badge {
    font-size: 0.75em;
    font-weight: 500;
    color: var(--text-light) !important;
}

/* Admin dashboard specific badge styling */
.admin-dashboard .badge {
    color: var(--text-light) !important;
}

/* Admin dashboard statistics numbers - force white */
.admin-dashboard .card h3,
.admin-dashboard .card .mb-0 {
    color: var(--text-light) !important;
}

/* Force white color for all numbers in admin dashboard */
.admin-dashboard h3[style*="color: var(--text-light)"] {
    color: var(--text-light) !important;
}

/* Force white color for Admin Dashboard title */
.admin-dashboard h1.display-5 {
    color: var(--text-light) !important;
}

/* Admin users page form styling */
.admin-dashboard .form-control::placeholder,
.admin-dashboard .form-select option {
    color: var(--text-light) !important;
    opacity: 0.8;
}

/* Status badges */
.badge-pending {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    color: var(--text-light);
}

.badge-in_review {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-bright) 100%);
    color: var(--text-light);
}

.badge-accepted {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-bright) 100%);
    color: var(--text-light);
}

.badge-rejected {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    color: var(--text-light);
}

.badge-cancelled {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: var(--text-light);
}

/* Role badges */
.badge-superadmin {
    background: linear-gradient(135deg, var(--black-darker) 0%, var(--black-dark) 100%);
    color: var(--text-light);
}

.badge-admin {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    color: var(--text-light);
}

.badge-user {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    color: var(--text-light);
}

/* Dashboard stats */
.stats-card {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-dark) 100%);
    color: var(--text-light);
    border-radius: 15px;
}

.stats-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* CV Sections */
.cv-section {
    margin-bottom: 2rem;
}

.cv-section h5 {
    color: var(--orange-bright);
    border-bottom: 2px solid var(--orange-bright);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Test interface */
.question-card {
    border-left: 4px solid var(--orange-bright);
}

.option-label {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.15s ease-in-out;
}

.option-label:hover {
    background-color: var(--light-color);
}

/* Progress bar */
.progress {
    height: 8px;
    border-radius: 4px;
}

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

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--black-darker) 0%, var(--black-dark) 100%) !important;
}

footer .text-primary {
    color: var(--orange-bright) !important;
}

footer .social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

footer .social-links a:hover {
    color: var(--orange-bright) !important;
    transform: translateY(-2px);
}

footer .contact-info a {
    transition: color 0.3s ease;
}

footer .contact-info a:hover {
    color: var(--orange-bright) !important;
}

footer .list-unstyled a {
    transition: all 0.3s ease;
    position: relative;
}

footer .list-unstyled a:hover {
    color: var(--orange-bright) !important;
    padding-left: 5px;
}

footer .list-unstyled a:hover i {
    color: var(--orange-bright) !important;
}

footer hr {
    border-color: var(--black-lighter) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .card {
        margin-bottom: 1rem;
    }
    
    .table-responsive {
        border-radius: 10px;
    }
    
    /* Mobile navbar optimization */
    .navbar-brand {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }
    
    /* Mobile footer optimization */
    footer .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    footer .contact-info {
        font-size: 0.9rem;
    }
    
    footer .social-links {
        text-align: center;
        margin-top: 1rem;
    }
    
    footer .list-unstyled {
        font-size: 0.9rem;
    }
    
    /* Mobile-First UX Improvements */
    .btn {
        min-height: 44px; /* iOS touch target minimum */
        min-width: 44px;
        padding: 12px 24px;
        font-size: 16px; /* Prevent zoom on iOS */
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .form-control, .form-select {
        min-height: 44px;
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px 16px;
    }
    
    .navbar-toggler {
        padding: 0.75rem;
        font-size: 1.3rem;
        border: none;
        border-radius: 8px;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: 100%;
        border: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
    }
    
    .card {
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    /* Touch-friendly spacing */
    .list-group-item {
        padding: 1rem;
        margin-bottom: 0.5rem;
        border-radius: 8px;
    }
    
    .table-responsive {
        border-radius: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile jumbotron optimization */
    .jumbotron h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .jumbotron .lead {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    /* Mobile card headers */
    .card-header h5 {
        font-size: 1rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    /* Mobile buttons */
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    /* Mobile forms */
    .form-control, .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Mobile tables */
    .table {
        font-size: 0.875rem;
    }
    
    .table th, .table td {
        padding: 0.5rem 0.25rem;
        word-wrap: break-word;
    }
    
    /* Mobile modals */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-content {
        border-radius: 10px;
    }
    
    /* Mobile CV sections */
    .cv-section h5 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    /* Mobile Hero Section */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        min-width: 250px;
        margin-bottom: 1rem;
    }
    
    /* Mobile Features */
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon i {
        font-size: 1.8rem;
    }
    
    /* Mobile CTA */
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        min-width: 250px;
        margin-bottom: 1rem;
    }
    
    /* Mobile stats cards */
    .stats-icon {
        font-size: 2rem;
    }
    
    /* Mobile badges */
    .badge {
        font-size: 0.7em;
        padding: 0.35em 0.65em;
    }
    
    /* Mobile progress bars */
    .progress {
        height: 6px;
    }
    
    /* Mobile alerts */
    .alert {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    /* Mobile list items */
    .list-group-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobile navigation */
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobile footer */
    .footer h5 {
        font-size: 1rem;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    /* Very small screens - jumbotron */
    .jumbotron {
        padding: 2rem 1rem;
    }
    
    .jumbotron h1 {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .jumbotron .lead {
        font-size: 0.9rem;
    }
    
    /* Very small screens - footer */
    footer {
        padding: 2rem 0 !important;
    }
    
    footer .col-lg-4 {
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    footer .contact-info {
        font-size: 0.85rem;
    }
    
    footer .social-links a {
        margin: 0 0.5rem;
    }
    
    footer .list-unstyled {
        font-size: 0.85rem;
    }
    
    footer .text-md-end {
        text-align: center !important;
    }
    
    /* Very small screens - cards */
    .card-body {
        padding: 1rem;
    }
    
    .card-header {
        padding: 0.75rem 1rem;
    }
    
    .card-header h5 {
        font-size: 0.9rem;
    }
    
    /* Very small screens - buttons */
    .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-lg {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Very small screens - navbar */
    .navbar-brand {
        font-size: 1rem;
        max-width: 150px;
    }
    
    /* Very small screens - tables */
    .table {
        font-size: 0.8rem;
    }
    
    .table th, .table td {
        padding: 0.4rem 0.2rem;
    }
    
    /* Very small screens - modals */
    .modal-dialog {
        margin: 0.25rem;
        max-width: calc(100% - 0.5rem);
    }
    
    .modal-header {
        padding: 0.75rem 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 0.75rem 1rem;
    }
    
    /* Very small screens - forms */
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    /* Very small screens - badges */
    .badge {
        font-size: 0.65em;
        padding: 0.3em 0.6em;
    }
    
    /* Very small screens - alerts */
    .alert {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
    
    /* Very small screens - list groups */
    .list-group-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Very small screens - stats */
    .stats-icon {
        font-size: 1.8rem;
    }
    
    /* Very small screens - CV sections */
    .cv-section h5 {
        font-size: 1rem;
    }
    
    /* Very small screens - progress bars */
    .progress {
        height: 5px;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .jumbotron {
        padding: 1.5rem 1rem;
    }
    
    .jumbotron h1 {
        font-size: 1.6rem;
    }
    
    .jumbotron .lead {
        font-size: 0.95rem;
    }
    
    .modal-dialog {
        margin: 0.5rem auto;
        max-width: 90%;
    }
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Alert Fixes */
.alert {
    position: relative !important;
    z-index: 1000 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin-bottom: 1rem !important;
    border-radius: 10px !important;
}

.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
    border-color: var(--black-dark) !important;
    color: var(--black-darker) !important;
}

.alert-success {
    background: linear-gradient(135deg, var(--orange-lighter) 0%, var(--orange-light) 100%) !important;
    border-color: var(--orange-bright) !important;
    color: var(--text-light) !important;
}

.alert-warning {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-bright) 100%) !important;
    border-color: var(--orange-dark) !important;
    color: var(--text-light) !important;
}

.alert-info {
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%) !important;
    border-color: var(--black-lighter) !important;
    color: var(--text-light) !important;
}

.alert-dismissible .btn-close {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    z-index: 2 !important;
    padding: 1rem !important;
}

/* Force display for error alerts */
.alert.show {
    display: block !important;
}

/* Modern Navbar Styles */
.modern-navbar {
    background: var(--black-primary) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 101, 34, 0.2);
    transition: all 0.3s ease;
    padding: 0.75rem 0;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.modern-navbar.scrolled {
    background: var(--black-primary) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.modern-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff !important;
    margin-left: 1rem;
}

.modern-brand:hover {
    color: #ffffff !important;
}

.brand-logo {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1.3rem;
    color: var(--text-light);
}

.modern-brand:hover .brand-logo {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-bright) 100%);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--orange-bright);
    font-weight: 500;
}

/* Company Name Styling */
.navbar-brand-text {
    display: flex;
    flex-direction: column;
    margin-left: 1rem;
    line-height: 1.2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.navbar-brand-text:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.navbar-brand-text:hover .company-name {
    color: var(--orange-bright);
}

.navbar-brand-text:hover .company-subtitle {
    color: var(--orange-light);
}

.company-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Playfair Display', 'Times New Roman', serif;
    line-height: 1;
    font-style: normal;
}

.company-subtitle {
    font-size: 0.7rem;
    font-weight: 500;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.1;
}

.modern-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
}

.hamburger {
    display: flex;
    flex-direction: column;
    width: 25px;
    height: 20px;
    justify-content: space-between;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--orange-bright);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.modern-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.modern-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.modern-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.modern-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.25rem;
    background: none;
}

.modern-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange-bright);
    transition: width 0.3s ease;
}

.modern-link:hover::before,
.modern-link:focus::before,
.modern-link.active::before {
    width: 100%;
}

.modern-link:hover,
.modern-link:focus,
.modern-link.active {
    color: var(--orange-bright) !important;
    background: none;
    transform: none;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.user-name {
    font-weight: 500;
}

.btn-modern-primary {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border: none;
    color: var(--text-light);
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(242, 101, 34, 0.3);
    font-size: 0.9rem;
}

.btn-modern-primary:hover {
    background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange-bright) 100%);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.4);
}

.btn-modern-outline {
    background: transparent;
    border: 2px solid #FFD54F;
    color: #FFD54F;
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-modern-outline:hover {
    background: #FFD54F;
    color: #1e1e1e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 213, 79, 0.3);
}

.modern-dropdown {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
    right: 0;
    left: auto;
 }

.modern-dropdown-item {
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 0 0.25rem;
    display: block;
    width: calc(100% - 0.5rem);
}

.modern-dropdown-item:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--orange-bright) !important;
    transform: translateX(2px);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-lighter);
}

::-webkit-scrollbar-thumb {
    background: var(--orange-bright);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orange-dark);
}

/* Profile Page Specific Styles */
.profile-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.profile-card .card-header {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.profile-card .card-header h5 {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.profile-card .card-body {
    padding: 2rem;
}

.form-label {
    font-weight: 500;
    color: var(--black-lighter);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--orange-bright);
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
    transform: translateY(-1px);
}

.form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.94-.94 1.88 1.88 3.5-3.5.94.94-4.44 4.44z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 1.4 1.4 1.4-1.4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.input-group .btn {
    border: 2px solid #e9ecef;
    border-left: none;
    background: #f8f9fa;
    color: var(--black-lighter);
    transition: all 0.3s ease;
}

.input-group .btn:hover {
    background: var(--orange-bright);
    color: var(--text-dark);
    border-color: var(--orange-bright);
}

.input-group .form-control:focus + .btn {
    border-color: var(--orange-bright);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%);
    border: none;
    color: var(--text-dark);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-bright) 100%);
    color: var(--text-dark);
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%);
    border: none;
    color: var(--text-dark);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #e0a800 0%, #ffc107 100%);
    color: var(--text-dark);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--orange-bright) 0%, var(--orange-light) 100%) !important;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%) !important;
}

.bg-gradient-info {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black-lighter) 100%) !important;
}

.text-golden {
    color: var(--orange-bright) !important;
}

/* Account info styles */
.account-info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
}

.account-info-item:last-child {
    border-bottom: none;
}

.account-info-item strong {
    color: var(--black-lighter);
    font-weight: 600;
}

.account-info-item .text-muted {
    color: #6c757d !important;
}

/* CV sayfasındaki tüm text-muted elemanlarını beyaz yap */
.user-cv-page .text-muted,
.cv-section .text-muted {
    color: var(--text-light) !important;
}

/* CV sayfasındaki tüm form etiketlerini beyaz yap */
.user-cv-page .form-label {
    color: var(--text-light) !important;
}

/* Password strength indicator */
.password-strength {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    margin-top: 0.5rem;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.password-strength-weak {
    background: #dc3545;
    width: 25%;
}

.password-strength-medium {
    background: #ffc107;
    width: 50%;
}

.password-strength-strong {
    background: #28a745;
    width: 75%;
}

.password-strength-very-strong {
    background: #20c997;
    width: 100%;
}

/* Form validation messages */
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #28a745;
}

/* Loading states */
.btn.loading {
    position: relative;
    color: transparent !important;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Mobile optimizations for profile page */
@media (max-width: 768px) {
    .profile-card .card-body {
        padding: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-control {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .account-info-item {
        padding: 0.5rem 0;
    }
}

@media (max-width: 576px) {
    .profile-card .card-body {
        padding: 1rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .card-header h5 {
        font-size: 1rem;
    }
}

/* Custom Alert Styles */
.custom-alert {
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    font-weight: 500;
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.custom-alert .btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.custom-alert .btn-close:hover {
    opacity: 1;
}

.custom-alert.alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545 !important;
}

.custom-alert.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
    color: #155724 !important;
    border-left: 4px solid #28a745 !important;
}

.custom-alert.alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%) !important;
    color: #0c5460 !important;
    border-left: 4px solid #17a2b8 !important;
}

/* Password Status Message Styles */
#passwordStatusMessage {
    animation: slideInUp 0.3s ease-out;
}

#passwordStatusMessage .alert {
    border-radius: 8px;
    border: none;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#passwordStatusMessage .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
    color: #155724 !important;
    border-left: 4px solid #28a745 !important;
}

#passwordStatusMessage .alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%) !important;
    color: #721c24 !important;
    border-left: 4px solid #dc3545 !important;
}

#passwordStatusMessage .alert-warning {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%) !important;
    color: #856404 !important;
    border-left: 4px solid #ffc107 !important;
}

#passwordStatusMessage .alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%) !important;
    color: #0c5460 !important;
    border-left: 4px solid #17a2b8 !important;
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive for company name */
@media (max-width: 768px) {
    .navbar-brand-text {
        display: none;
    }
}

/* Force orange color for hero title */
.landing-page.index .hero-section .hero-text h1.hero-title {
    color: #ff6600 !important;
}

.landing-page.index .hero-section .hero-text .hero-title {
    color: #ff6600 !important;
}
