/**
 * Welcome Page Styles
 * Frontend-specific styles for WelcomeController views
 */

/* ==========================================
   Landing Page - Premium Design
   ========================================== */

.landing-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

/* Animated Background Shapes */
.landing-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.bg-shape.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #4169E1 0%, #3155B5 100%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.bg-shape.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

/* Landing Content */
.landing-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Brand */
.landing-brand {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.landing-brand .brand-icon {
    width: 125px;
    height: 125px;
    background: linear-gradient(135deg, #4169E1 0%, #3155B5 100%);
    backdrop-filter: blur(10px);
    border-radius: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 50px rgba(65, 105, 225, 0.5),
                0 0 40px rgba(65, 105, 225, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    animation: brandPulse 3s ease-in-out infinite;
}

.landing-brand .brand-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 39px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.6) 0%, rgba(49, 85, 181, 0.4) 50%, rgba(90, 125, 232, 0.6) 100%);
    z-index: -1;
    opacity: 0.7;
    animation: brandGlow 3s ease-in-out infinite;
}

.landing-brand .brand-icon i {
    font-size: 58px;
    color: #fff;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

/* Default: image inside blue box (fallback) */
.landing-brand .brand-icon .brand-icon-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    border-radius: 0;
}

/* Custom icon: image IS the icon - no blue background */
.landing-brand .brand-icon.has-custom-img {
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
    animation: brandPulse 3s ease-in-out infinite;
}

.landing-brand .brand-icon.has-custom-img::before {
    display: none;
}

.landing-brand .brand-icon.has-custom-img .brand-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    animation: brandImgGlow 3s ease-in-out infinite;
}

@keyframes brandImgGlow {
    0%, 100% { filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 25px rgba(65, 105, 225, 0.4)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.7)) drop-shadow(0 0 50px rgba(65, 105, 225, 0.6)); }
}

.landing-brand h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes brandPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

@keyframes brandGlow {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 25px rgba(65, 105, 225, 0.4); }
    50% { opacity: 0.85; box-shadow: 0 0 45px rgba(65, 105, 225, 0.6); }
}

/* Landing Card - Glassmorphism */
.landing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.landing-card .card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.5) 0%, rgba(49, 85, 181, 0.3) 50%, rgba(90, 125, 232, 0.5) 100%);
    border-radius: 26px;
    z-index: -1;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.landing-card:hover .card-glow {
    opacity: 0.8;
    box-shadow: 0 0 60px rgba(65, 105, 225, 0.4);
}

.landing-card .card-header {
    text-align: center;
    margin-bottom: 20px;
}

.landing-card .card-header h2 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.landing-card .card-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

/* Custom Select */
.custom-select-wrapper {
    position: relative;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.custom-select-wrapper.shake {
    animation: shake 0.5s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.custom-select-wrapper .select-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.custom-select-wrapper .select-icon i {
    font-size: 24px;
    color: #4169E1;
}

.custom-select-wrapper .select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.custom-select-wrapper .select-arrow i {
    font-size: 24px;
    color: #999;
}

.custom-select-wrapper .select-wrapper {
    position: relative;
}

.custom-select-wrapper .select-wrapper input.select-dropdown {
    padding: 18px 50px 18px 55px !important;
    font-size: 1rem !important;
    border: 2px solid #e8e8e8 !important;
    border-radius: 16px !important;
    background: #f8f9fa !important;
    height: auto !important;
    line-height: 1.4 !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.custom-select-wrapper .select-wrapper input.select-dropdown:focus {
    border-color: #4169E1 !important;
    background: white !important;
    box-shadow: 0 0 0 4px rgba(65, 105, 225, 0.1) !important;
}

.custom-select-wrapper .select-wrapper .caret {
    display: none;
}

/* Dropdown Content - City Select Dropdown (Global - Materialize renders outside wrapper) */
.landing-page .dropdown-content,
.custom-select-wrapper + .dropdown-content,
body > .dropdown-content.select-dropdown {
    border-radius: 16px !important;
    box-shadow: 0 15px 50px rgba(65, 105, 225, 0.25) !important;
    border: 2px solid #4169E1 !important;
    margin-top: 5px !important;
    overflow: hidden !important;
    max-height: 320px !important;
    overflow-y: auto !important;
}

/* Custom scrollbar for dropdown */
.landing-page .dropdown-content::-webkit-scrollbar,
.select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.landing-page .dropdown-content::-webkit-scrollbar-track,
.select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.landing-page .dropdown-content::-webkit-scrollbar-thumb,
.select-dropdown::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4169E1 0%, #3155B5 100%);
    border-radius: 3px;
}

/* City dropdown items - BOLD and styled */
.landing-page .dropdown-content li,
.select-dropdown li {
    min-height: auto !important;
    border-left: 4px solid transparent !important;
    transition: all 0.25s ease !important;
}

.landing-page .dropdown-content li > span,
.select-dropdown li > span {
    padding: 14px 20px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    display: block !important;
    width: 100% !important;
    transition: all 0.25s ease !important;
    letter-spacing: 0.5px !important;
}

/* Hover effect */
.landing-page .dropdown-content li:not(.disabled):hover,
.select-dropdown li:not(.disabled):hover {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.15) 0%, rgba(49, 85, 181, 0.1) 100%) !important;
    border-left-color: #4169E1 !important;
}

.landing-page .dropdown-content li:not(.disabled):hover > span,
.select-dropdown li:not(.disabled):hover > span {
    color: #4169E1 !important;
    padding-left: 28px !important;
}

/* Selected state */
.landing-page .dropdown-content li.selected,
.select-dropdown li.selected {
    background: linear-gradient(135deg, #4169E1 0%, #3155B5 100%) !important;
    border-left-color: #fff !important;
}

.landing-page .dropdown-content li.selected > span,
.select-dropdown li.selected > span {
    color: white !important;
    font-weight: 800 !important;
}

/* Disabled placeholder */
.landing-page .dropdown-content li.disabled > span,
.select-dropdown li.disabled > span {
    color: #888 !important;
    font-style: italic !important;
    font-weight: 500 !important;
}

/* Search Button */
.landing-search-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #4169E1 0%, #3155B5 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.landing-search-btn::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;
}

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

.landing-search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(65, 105, 225, 0.4);
    background: linear-gradient(135deg, #3658C8 0%, #284A9C 100%);
}

.landing-search-btn:active {
    transform: translateY(-1px);
}

.landing-search-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.landing-search-btn:hover .btn-icon {
    transform: translateX(5px);
}

.landing-search-btn .btn-icon i {
    font-size: 18px;
}

.landing-search-btn.loading {
    pointer-events: none;
}

.landing-search-btn.loading .btn-text {
    opacity: 0;
}

.landing-search-btn.loading::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Card Stats */
.landing-card .card-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.landing-card .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.landing-card .stat-item i {
    font-size: 24px;
    color: #fff;
}

.landing-card .stat-number {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.landing-card .stat-label {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.landing-card .stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.4);
}

/* Landing Features */
.landing-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.landing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.landing-features .feature-item i {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
}

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

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

/* ==========================================
   Welcome Page - Other Styles
   ========================================== */

/* Welcome page container */
.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* City selection page */
.city-select-section {
    text-align: center;
    padding: 40px 20px;
}

.city-select-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.city-select-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* City cards grid */
.city-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

/* Company cards on city page */
.company-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ==========================================
   Responsive Styles
   ========================================== */

/* ==========================================
   Landing Page - Mobile Responsive
   ========================================== */

/* Tablet (max 992px) */
@media (max-width: 992px) {
    .bg-shape {
        filter: blur(60px);
        opacity: 0.4;
    }

    .bg-shape.shape-1 {
        width: 400px;
        height: 400px;
        top: -120px;
        right: -80px;
    }

    .bg-shape.shape-2 {
        width: 280px;
        height: 280px;
    }

    .bg-shape.shape-3 {
        width: 220px;
        height: 220px;
    }
}

/* Small tablet (max 768px) */
@media (max-width: 768px) {
    .landing-page {
        padding: 15px 0;
    }

    .bg-shape {
        filter: blur(50px);
        opacity: 0.35;
        animation-duration: 25s;
    }

    .bg-shape.shape-1 {
        width: 320px;
        height: 320px;
        top: -100px;
        right: -60px;
    }

    .bg-shape.shape-2 {
        width: 220px;
        height: 220px;
        bottom: -80px;
        left: -60px;
    }

    .bg-shape.shape-3 {
        width: 180px;
        height: 180px;
    }

    .landing-brand h1 {
        font-size: 2rem;
    }

    .landing-card .card-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    /* Landing page responsive */
    .landing-page {
        padding: 20px 0;
        min-height: calc(100vh - 65px);
    }

    .landing-brand {
        margin-bottom: 25px;
    }

    .landing-brand .brand-icon {
        width: 95px;
        height: 95px;
        border-radius: 26px;
    }

    .landing-brand .brand-icon::before {
        border-radius: 31px;
    }

    .landing-brand .brand-icon i {
        font-size: 45px;
    }

    .landing-brand h1 {
        font-size: 1.9rem;
    }

    .landing-card {
        padding: 30px 25px;
        border-radius: 20px;
    }

    .landing-card .card-header h2 {
        font-size: 1.3rem;
    }

    .landing-card .card-header p {
        font-size: 0.9rem;
    }

    .landing-search-btn {
        padding: 16px 25px;
        font-size: 1rem;
    }

    .landing-card .card-stats {
        gap: 20px;
    }

    .landing-card .stat-number {
        font-size: 1.5rem;
    }

    .landing-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Background shapes - mobile optimized */
    .bg-shape {
        filter: blur(40px);
        opacity: 0.3;
        animation-duration: 30s;
    }

    .bg-shape.shape-1 {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -50px;
    }

    .bg-shape.shape-2 {
        width: 180px;
        height: 180px;
        bottom: -60px;
        left: -50px;
    }

    .bg-shape.shape-3 {
        width: 140px;
        height: 140px;
    }

    /* Welcome page responsive */
    .city-select-title {
        font-size: 1.5rem;
    }

    .city-select-subtitle {
        font-size: 1rem;
    }

    .city-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small mobile (max 480px) */
@media (max-width: 480px) {
    .bg-shape {
        filter: blur(35px);
        opacity: 0.25;
        animation-duration: 35s;
    }

    .bg-shape.shape-1 {
        width: 180px;
        height: 180px;
        top: -50px;
        right: -40px;
    }

    .bg-shape.shape-2 {
        width: 140px;
        height: 140px;
        bottom: -40px;
        left: -35px;
    }

    .bg-shape.shape-3 {
        width: 100px;
        height: 100px;
    }

    .landing-brand h1 {
        font-size: 1.7rem;
    }

    .landing-card .card-header h2 {
        font-size: 1.2rem;
    }

    .landing-card .stat-number {
        font-size: 1.3rem;
    }

    .landing-card .stat-label {
        font-size: 0.7rem;
    }
}

/* Very small screens (max 375px) */
@media (max-width: 375px) {
    .bg-shape.shape-3 {
        display: none;
    }

    .bg-shape {
        filter: blur(30px);
        opacity: 0.2;
    }

    .bg-shape.shape-1 {
        width: 150px;
        height: 150px;
    }

    .bg-shape.shape-2 {
        width: 120px;
        height: 120px;
    }

    .landing-content {
        padding: 15px;
    }

    .landing-card {
        padding: 25px 20px;
    }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .bg-shape {
        animation: none !important;
    }

    .landing-brand .brand-icon {
        animation: none !important;
    }

    .landing-brand .brand-icon::before {
        animation: none !important;
    }
}

/* ==========================================
   Scroll Down Indicator
   ========================================== */

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    margin-top: 35px;
    animation: fadeInUp 0.8s ease 0.8s both;
    transition: all 0.3s ease;
}

.scroll-indicator-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.4) 0%, rgba(49, 85, 181, 0.3) 100%);
    border: 1px solid rgba(65, 105, 225, 0.5);
    padding: 10px 22px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.3);
}

.scroll-indicator-text i {
    font-size: 20px !important;
    color: #7eb4ff;
}

.scroll-indicator:hover .scroll-indicator-text {
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.55) 0%, rgba(49, 85, 181, 0.45) 100%);
    color: #fff;
    border-color: rgba(65, 105, 225, 0.7);
    box-shadow: 0 8px 30px rgba(65, 105, 225, 0.45);
    transform: translateY(-3px);
}

.scroll-indicator-arrow {
    color: rgba(255, 255, 255, 0.9);
    font-size: 30px !important;
    animation: bounceDown 1.5s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Hide scroll indicator when scrolled */
.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 600px) {
    .scroll-indicator {
        margin-top: 25px;
    }
    .scroll-indicator-text {
        font-size: 0.72rem;
        padding: 8px 16px;
        gap: 6px;
    }
    .scroll-indicator-text i {
        font-size: 17px !important;
    }
    .scroll-indicator-arrow {
        font-size: 26px !important;
    }
}

/* ==========================================
   PROMOTION SECTION - Celebration Features
   ========================================== */

.promo-features-section {
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
    padding: 60px 20px;
    position: relative;
}

.promo-features-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.promo-header {
    text-align: center;
    margin-bottom: 40px;
}

.promo-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.35) 0%, rgba(49, 85, 181, 0.25) 100%);
    border: 1px solid rgba(65, 105, 225, 0.5);
    border-radius: 24px;
    margin-bottom: 18px;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.25);
    animation: badgePulse 3s ease-in-out infinite;
}

.promo-badge-wrapper i {
    color: #7eb4ff;
    font-size: 20px;
}

.promo-badge {
    color: #7eb4ff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(65, 105, 225, 0.25); }
    50% { box-shadow: 0 4px 30px rgba(65, 105, 225, 0.45), 0 0 15px rgba(65, 105, 225, 0.2); }
}

.promo-header h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.promo-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.promo-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(65, 105, 225, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.promo-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4169E1 0%, #3155B5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.promo-card-icon i {
    color: #fff;
    font-size: 24px;
}

.promo-card h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.promo-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

.promo-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.promo-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #4169E1 0%, #3155B5 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(65, 105, 225, 0.4);
}

.promo-cta-btn:hover {
    background: linear-gradient(135deg, #3658C8 0%, #284A9C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(65, 105, 225, 0.5);
    color: #fff;
}

.promo-cta-btn i {
    font-size: 20px;
}

.promo-cta-login {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.promo-cta-login a {
    color: #7eb4ff;
    font-weight: 600;
    text-decoration: none;
}

.promo-cta-login a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Promo Responsive */
@media (max-width: 600px) {
    .promo-features-section {
        padding: 40px 15px;
    }

    .promo-header h2 {
        font-size: 1.4rem;
    }

    .promo-header p {
        font-size: 0.9rem;
    }

    .promo-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .promo-card {
        padding: 20px;
    }

    .promo-cta-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 375px) {
    .promo-features-section {
        padding: 30px 12px;
    }

    .promo-header {
        margin-bottom: 25px;
    }

    .promo-header h2 {
        font-size: 1.25rem;
    }
}

/* ==========================================
   Glassmorphism Card Effects (No Hero Image)
   Suptilni efekti za manje monotone kartice
   ========================================== */

/* Company cards on city listing page - enhanced */
.public-company-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.public-company-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(65, 105, 225, 0.3) 0%, rgba(17, 153, 142, 0.2) 50%, rgba(65, 105, 225, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: -1;
}

.public-company-card:hover::before {
    opacity: 1;
}

.public-company-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(65, 105, 225, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(65, 105, 225, 0.2);
}

/* Card image wrapper glow effect */
.public-company-card .card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.public-company-card .card-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.public-company-card:hover .card-image-wrapper::after {
    left: 100%;
}

/* Results page hero - subtle gradient overlay */
.results-hero {
    position: relative;
}

.results-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(248, 249, 255, 0.8), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Filter section glassmorphism */
.filter-section,
.filters-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 255, 0.8) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Empty state styling */
.empty-state {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 255, 0.85) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

/* Animated gradient background for pages without hero */
.results-page-wrapper,
.company-page-wrapper,
.article-page-wrapper {
    position: relative;
}

/* Add subtle animated gradient orbs behind content */
.results-page-wrapper::before,
.company-page-wrapper:not(.has-hero-bg)::before {
    content: '';
    position: fixed;
    top: 20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(65, 105, 225, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 15s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

.results-page-wrapper::after,
.company-page-wrapper:not(.has-hero-bg)::after {
    content: '';
    position: fixed;
    bottom: 10%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(17, 153, 142, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 12s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: -1;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* Interactive hover glow for cards */
.clickable-card {
    position: relative;
}

.clickable-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(65, 105, 225, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.clickable-card:hover::after {
    opacity: 1;
}
