.text-justify {
    text-align: justify;
}

a {
    color: #050915;
    text-decoration: none;
}

a:hover {
    color: #0b1530;
}

.footer {
    background: #050915;
    color: #f5f7fa;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: #f5f7fa;
    margin-bottom: 1rem;
}

.footer a {
    color: #e0e6ed;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ffff06;
}

.footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .text-primary-custom {
    color: #fff !important;
}

.footer .social-icon {
    width: 40px;
    height: 40px;
    background: #0b1530;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
}

.footer .social-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.footer .social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 21, 48, 0.18);
    color: #ffff06;
    background: #152759;
}

.footer .social-icon:hover i {
    color: #ffff06;
}

.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    display: none;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
}

.mobile-nav-item {
    text-align: center;
    flex: 1;
    padding: 0.5rem;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: #0b1530;
    transform: translateY(-2px);
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    display: block;
}

.mobile-nav-item span {
    font-size: 0.7rem;
    font-weight: 500;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: flex !important;
        flex-direction: row !important;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

.mobile-nav .pull-refresh {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #0b1530;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.mobile-nav .pull-refresh.show {
    transform: translateX(-50%) translateY(20px);
}

#navbarNav .dropdown-toggle::after {
    border: none;
}

@media (max-width: 991.98px) {
    #navbarNav .desktop-user-actions {
        display: none !important;
    }
}

#navbarNav .desktop-user-actions .user-action-btn {
    background: transparent !important;
    color: #050915 !important;
    border-radius: 0;
    padding: 0.5rem 1rem !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    text-decoration: none;
}

#navbarNav .desktop-user-actions .user-action-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0b1530;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

#navbarNav .desktop-user-actions .user-action-btn:hover {
    background: transparent !important;
    color: #0b1530 !important;
    transform: none;
    box-shadow: none;
}

#navbarNav .desktop-user-actions .user-action-btn:hover::after {
    width: 80%;
}

#navbarNav .desktop-user-actions .user-action-btn:hover i {
    transform: translateY(-2px);
}

#navbarNav .desktop-user-actions .user-action-btn:focus {
    outline: none;
    color: #0b1530 !important;
}

#navbarNav .desktop-user-actions .user-action-btn i {
    font-size: 1rem;
    margin-right: 0.5rem;
    transition: transform 0.3s ease;
}

#navbarNav .desktop-user-actions .user-action-btn span {
    font-size: 0.95rem;
    font-weight: 500;
}

#navbarNav .desktop-user-actions .user-action-btn.active {
    color: #0b1530 !important;
}

#navbarNav .desktop-user-actions .user-action-btn.active::after {
    width: 80%;
}

@media (max-width: 991.98px) {
    #navbarNav .desktop-user-actions {
        display: none;
    }
}

#navbarNav .nav-item {
    margin: 0 0.25rem;
}

#navbarNav .nav-item .nav-link {
    position: relative;
    transition: all 0.3s ease;
}

#navbarNav .nav-item .nav-link:hover {
    color: #0b1530;
}

body.blue #navbarNav .desktop-user-actions .user-action-btn {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.blue #navbarNav .desktop-user-actions .user-action-btn:hover {
    color: white !important;
}

body.blue #navbarNav .desktop-user-actions .user-action-btn:hover::after {
    background: rgba(255, 255, 255, 0.8);
}

body.blue #navbarNav .desktop-user-actions .user-action-btn.active {
    color: white !important;
}

body.blue #navbarNav .desktop-user-actions .user-action-btn.active::after {
    background: rgba(255, 255, 255, 0.8);
}

body.blue #navbarNav .desktop-user-actions .user-action-btn::after {
    background: rgba(255, 255, 255, 0.6);
}



.dark-link {
    color: #050915;
    text-decoration: none;
}

.dark-link:hover {
    color: #0b1530;
}

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 112px;
    width: 50px;
    height: 50px;
    background: #0b1530;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(11, 21, 48, 0.18);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #010307;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 25px 50px rgba(11, 21, 48, 0.18);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 90px;
        right: 85px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.scroll-to-top.bounce {
    animation: scrollTopBounce 0.6s ease-out;
}

@keyframes scrollTopBounce {
    0% {
        transform: translateY(20px) scale(0.3);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.pagination-custom {
    justify-content: center;
    margin-top: 50px;
}

.page-link {
    border: none;
    color: var(--primary-color);
    padding: 12px 18px;
    margin: 0 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.page-item.active .page-link {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

body .logo-white {
    display: none;
}

body .logo-blue {
    display: inline-block;
}

body.blue .logo-white {
    display: inline-block;
}

body.blue .logo-blue {
    display: none;
}

body.blue .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
}

body.blue .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

body.blue .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}

body .slogan-container {
    background: transparent;
    color: #fff;
    padding: 120px 0 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

body .slogan-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 9, 21, 0.95) 0%, rgba(11, 21, 48, 0.85) 50%, rgba(5, 9, 21, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

body .slogan-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%), radial-gradient(ellipse at top, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    animation: luxury-sweep 8s ease-in-out infinite;
}

body .slogan-container .site-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    letter-spacing: 12px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    padding: 0 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 6, 0.9) 50%, rgba(255, 255, 255, 0.95) 75%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: premium-shine 6s linear infinite;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(255, 255, 6, 0.2));
}

body .slogan-container .site-slogan::before,
body .slogan-container .site-slogan::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 6, 0.5) 50%, rgba(255, 255, 255, 0.3) 100%);
}

body .slogan-container .site-slogan::before {
    left: -100px;
    transform: translateY(-50%);
}

body .slogan-container .site-slogan::after {
    right: -100px;
    transform: translateY(-50%) scaleX(-1);
}

@media (max-width: 1400px) {
    body .slogan-container .site-slogan {
        font-size: 1.3rem;
        letter-spacing: 10px;
    }

    body .slogan-container .site-slogan::before,
    body .slogan-container .site-slogan::after {
        width: 60px;
    }

    body .slogan-container .site-slogan::before {
        left: -80px;
    }

    body .slogan-container .site-slogan::after {
        right: -80px;
    }
}

@media (max-width: 1200px) {
    body .slogan-container .site-slogan {
        font-size: 1.2rem;
        letter-spacing: 8px;
    }

    body .slogan-container .site-slogan::before,
    body .slogan-container .site-slogan::after {
        display: none;
    }
}

@media (max-width: 768px) {
    body .slogan-container .site-slogan {
        font-size: 0.9rem;
        letter-spacing: 6px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    body .slogan-container .site-slogan {
        font-size: 0.8rem;
        letter-spacing: 4px;
    }
}

.nav-link.text-white {
    color: white !important;
}

.nav-link.text-white:hover {
    color: white !important;
}

.nav-pills .nav-link.active,
.btn.active,
.btn:hover {
    background: #0b1530 !important;
    color: #fff !important;
    border-color: #0b1530 !important;
}

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.login-modal.show {
    opacity: 1;
    visibility: visible;
}

.login-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    width: 90%;
    max-width: 400px;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(11, 21, 48, 0.18);
}

.show .login-modal-content {
    transform: scale(1) translateY(0);
}

.login-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-modal .close-modal:hover {
    color: #050915;
    transform: scale(1.1);
}

.login-modal .login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.login-modal .login-header h3 {
    color: #050915;
    margin-bottom: 0.5rem;
}

.login-modal .login-header p {
    color: #6c757d;
    margin: 0;
}

.login-modal .form-group {
    margin-bottom: 1rem;
}

.login-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #050915;
    font-weight: 500;
}

.login-modal .form-group .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.login-modal .form-group .form-control:focus {
    outline: none;
    border-color: #0b1530;
    box-shadow: 0 0 0 3px rgba(58, 163, 246, 0.1);
}

.login-modal .btn-login {
    width: 100%;
    padding: 0.75rem;
    background: #0b1530;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-modal .btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.login-modal .btn-login:hover::before {
    left: 100%;
}

.login-modal .btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 21, 48, 0.18);
}

.login-modal .btn-login:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.login-modal .login-links {
    text-align: center;
    margin-top: 1rem;
}

.login-modal .login-links a {
    color: #0b1530;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.login-modal .login-links a:hover {
    text-decoration: underline;
}

.login-modal .login-links a.register-link {
    margin-left: 1rem;
    color: #6c757d;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(11, 21, 48, 0.1);
    z-index: 10001;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #28a745;
}

.notification-success i {
    color: #28a745;
}

.notification-error {
    border-left: 4px solid #dc3545;
}

.notification-error i {
    color: #dc3545;
}

.notification-info {
    border-left: 4px solid #0b1530;
}

.notification-info i {
    color: #0b1530;
}

.notification span {
    font-weight: 500;
    color: #050915;
}

@media (max-width: 768px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100px);
    }

    .notification.show {
        transform: translateY(0);
    }
}

@keyframes slogan-pop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    80% {
        transform: scale(1.08);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes moveGrid {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(10px, 10px);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    40%,
    43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    color: #050915;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0b1530;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2c8dd9;
}

.navbar {
    background: linear-gradient(135deg, #0b1530, #2980b9);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: linear-gradient(135deg, #0b1530, #2980b9) !important;
}

.navbar-brand {
    font-size: 2rem;
    font-weight: 700;
    color: #0b1530 !important;
    text-decoration: none;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: none;
    }
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: yellow !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0b1530;
    transition: width 0.3s ease;
}

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

.dropdown-menu {
    border: none;
    box-shadow: 0 15px 35px rgba(11, 21, 48, 0.1);
    border-radius: 12px;
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.dropdown-menu .dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(58, 163, 246, 0.1), transparent);
    border-left-color: #0b1530;
    color: #0b1530;
}

.hero {
    min-height: 66vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0b1530, #050915 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f0f8ff" width="1200" height="800"/><g fill="%23e6f3ff"><circle cx="200" cy="150" r="120"/><circle cx="800" cy="400" r="150"/><circle cx="1000" cy="200" r="100"/></g></svg>');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 30px;
        min-height: 100vh;
    }
}

.hero::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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: moveGrid 20s linear infinite;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero .hero-content label {
    color: #050915;
}

.hero .hero-content .nav-link.active {
    color: #ffffff !important;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: slideUpFade 1s ease-out 0.5s forwards;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: slideUpFade 1s ease-out 0.8s forwards;
}

@media (max-width: 768px) {
    .hero p {
        font-size: 1.1rem;
    }
}

.search-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(11, 21, 48, 0.1);
    margin-top: 3rem;
    opacity: 0;
    animation: slideUpFade 1s ease-out 1.1s forwards;
}

.search-form .nav-link {
    color: #0b1530 !important;
}

.search-form .nav-link:hover {
    color: #2980b9 !important;
}

@media (max-width: 768px) {
    .search-form {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
}

.search-form .search-tabs {
    margin-bottom: 2rem;
}

.search-form .search-tabs .nav-pills .nav-link {
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    margin: 0 0.25rem;
    background: transparent;
    color: #050915;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.search-form .search-tabs .nav-pills .nav-link.active,
.search-form .search-tabs .nav-pills .nav-link:hover {
    background: #0b1530;
    color: white;
    border-color: #0b1530;
    transform: translateY(-2px);
}

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

.form-control:focus,
.form-select:focus {
    border-color: #0b1530;
    box-shadow: 0 0 0 0.2rem rgba(58, 163, 246, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #0b1530, #0a142f 100%);
    border: none;
    border-radius: 15px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 21, 48, 0.18);
}

.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11, 21, 48, 0.1);
    transition: all 0.4s ease;
    position: relative;
    margin-bottom: 2rem;
    height: 100%;
}

@media (max-width: 768px) {
    .property-card {
        margin-bottom: 1rem;
    }
}

.property-card .property-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.property-card .property-link:hover {
    text-decoration: none;
    color: inherit;
}

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

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-card:hover .property-title {
    color: #0b1530;
}

.property-card:hover .property-title:hover {
    color: #0b1530;
}

@media (hover: none) {
    .property-card:hover {
        transform: none;
    }

    .property-card:active {
        transform: scale(0.98);
    }
}

.property-card .property-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.property-card .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card .property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffff06;
    color: #050915;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.property-card .property-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    z-index: 2;
    font-size: 0.9rem;
}

.property-card .property-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-card .property-content .property-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #050915;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.property-card .property-content .property-location {
    color: #6c757d;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.property-card .property-content .property-location i {
    color: #0b1530;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.property-card .property-content .property-features {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .property-card .property-content .property-features {
        display: block;
    }
}

.property-card .property-content .property-features .feature {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.85rem;
    flex: 1;
    justify-content: center;
}

@media (max-width: 768px) {
    .property-card .property-content .property-features .feature {
        display: inline-block;
        margin-right: 5px;
    }
}

.property-card .property-content .property-features .feature i {
    color: #0b1530;
    margin-right: 0.4rem;
    font-size: 0.8rem;
}

.property-card .property-content .property-features .feature span {
    white-space: nowrap;
}

.stats-section {
    background: linear-gradient(135deg, #0b1530, #000000);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

.stats-section .stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stats-section .stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

@media (max-width: 768px) {
    .stats-section .stat-item .stat-number {
        font-size: 2rem;
    }
}

.stats-section .stat-item .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2rem;
    padding: 0;
}

.skeleton-image {
    height: 250px;
}

.skeleton-content {
    padding: 1.5rem;
}

.skeleton-line {
    height: 20px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.skeleton-line:last-child {
    width: 60%;
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-content .modal-header {
    background: linear-gradient(135deg, #0b1530, #0a142f 100%);
    color: white;
    border: none;
}

.map-container {
    height: 400px;
    background: #e9ecef;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #6c757d;
    position: relative;
    overflow: hidden;
}

.map-container::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"><rect fill="%23f8f9fa" width="100" height="100"/><g stroke="%23dee2e6" stroke-width="0.5" fill="none"><path d="M10,10 L90,10 L90,90 L10,90 Z"/><path d="M20,20 L80,20 L80,80 L20,80 Z"/><circle cx="50" cy="50" r="15" fill="%233aa3f6" opacity="0.3"/></g></svg>');
    background-size: cover;
}

.swiper-pagination-bullet-active {
    background: #0b1530 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #0b1530 !important;
}

.section-padding {
    padding: 5rem 0;
}

.text-primary-custom {
    color: #0b1530 !important;
}

.bg-primary-custom {
    background: #0b1530 !important;
}

.border-radius-custom {
    border-radius: 20px !important;
}

.pulse {
    animation: pulse 2s infinite;
}

.bounce {
    animation: bounce 1s ease-out;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.recruitment-hero {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
}

.recruitment-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 76, 153, 0.8), rgba(0, 76, 153, 0.6));
}

.recruitment-hero .text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.recruitment-hero .site-slogan h2 {
    font-size: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.recruitment-card,
.branches-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.recruitment-card:hover,
.branches-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recruitment-card .benefit-item,
.branches-card .benefit-item {
    transition: all 0.3s ease;
}

.recruitment-card .benefit-item:hover,
.branches-card .benefit-item:hover {
    transform: translateX(5px);
}

.contact-box {
    background: linear-gradient(135deg, #0b1530, #010307);
}

.contact-box i {
    width: 20px;
    text-align: center;
}

.branches-list .branch-item {
    transition: all 0.3s ease;
}

.branches-list .branch-item:hover {
    transform: translateX(5px);
}

.branches-list .branch-item:hover i {
    transform: scale(1.2);
}

.branches-list .branch-item i {
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

#apply-form .form-control,
#apply-form .form-select {
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

#apply-form .form-control:focus,
#apply-form .form-select:focus {
    border-color: #0b1530;
    box-shadow: 0 0 0 0.25rem rgba(0, 76, 153, 0.25);
}

#apply-form .btn-primary {
    transition: all 0.3s ease;
}

#apply-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 76, 153, 0.3);
}

@media (max-width: 768px) {
    .recruitment-hero {
        min-height: 50vh;
    }

    .recruitment-hero .site-slogan h2 {
        font-size: 1.2rem;
        padding: 8px 15px;
    }
}

@media (max-width: 576px) {
    .recruitment-hero {
        min-height: 40vh;
    }
}

.hero-section {
    position: relative;
    height: 500px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.red-section {
    background: var(--gradient-bg);
    color: white;
    padding: 60px 0;
}

.white-section {
    background: white;
    padding: 60px 0;
    color: #222;
}

.white-section .feature-card {
    color: #222;
}

.white-section .feature-card h3 {
    color: #0b1530;
}

.white-section .feature-card p,
.white-section .feature-card ul,
.white-section .feature-card li {
    color: #333;
}

.feature-card {
    padding: 30px;
    height: 100%;
    color: #222;
}

.feature-card h3 {
    color: #0b1530;
}

.feature-card p,
.feature-card ul,
.feature-card li {
    color: #333;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.feature-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.red-section .feature-card ul li:before {
    color: white;
}

.feature-image {
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.video-section {
    background: #000;
    padding: 60px 0;
    text-align: center;
}

.video-section h2 {
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.jobs-section {
    background: var(--gradient-bg);
    color: black;
    padding: 60px 0;
}

.jobs-section h2 {
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.job-table {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.job-table th {
    background: var(--gradient-bg);
    padding: 15px;
    font-weight: 600;
}

.job-table td {
    padding: 15px;
    color: #222;
    border-bottom: 1px solid #eee;
}

.job-table tbody tr:hover {
    background-color: #f0f0f0;
}

.apply-section {
    padding: 60px 0;
    background: #f8f9fa;
    color: #222;
}

.apply-section h2 {
    text-align: center;
    color: #0b1530;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.form-control,
.form-select {
    border-radius: 4px;
    padding: 12px;
    border: 1px solid #ddd;
    color: #222;
    background: #fff;
}

.btn-submit {
    background: var(--gradient-bg);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #000000 0%, #0b1530 100%);
}

footer {
    background: var(--gradient-bg);
    color: white;
    padding: 40px 0 20px;
}

footer h5 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer .social-icons a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
}

.event-img {
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
