body {
    background-image: url('/files/images/dominara-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.85) 100%);
    z-index: -1;
}

.modern-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 2rem 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    opacity: 0.6;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
    animation: gradient-shift 3s ease infinite;
    letter-spacing: 1px;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: #a3a3a3;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-section-icon {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.companies-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .companies-grid {
        gap: 1.5rem;
    }
}

.company-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    backdrop-filter: blur(20px);
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 280px;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(245, 158, 11, 0.3) inset,
        0 0 40px rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.4);
}

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

@media (max-width: 768px) {
    .company-card {
        flex-direction: column;
        min-height: auto;
    }
}

.company-header {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-width: 320px;
    width: 320px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .company-header {
        width: 100%;
        min-width: 100%;
        padding: 2rem 1.5rem;
    }
}

.company-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.company-image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    z-index: 2;
}

@media (max-width: 768px) {
    .company-image-container {
        width: 160px;
        height: 160px;
    }
}

.company-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
    background: rgba(0, 0, 0, 0.4);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.1) inset,
        0 0 60px rgba(245, 158, 11, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.company-card:hover .company-image {
    transform: scale(1.05);
    box-shadow:
        0 16px 50px rgba(0, 0, 0, 0.7),
        0 0 0 4px rgba(255, 255, 255, 0.2) inset,
        0 0 80px rgba(245, 158, 11, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .company-image {
        width: 160px;
        height: 160px;
    }
}

.company-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.company-code {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.company-content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

@media (max-width: 768px) {
    .company-content {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
}

.company-info-section {
    margin-bottom: 0;
}

.company-info-title {
    font-size: 1rem;
    font-weight: 600;
    color: #f59e0b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info-title i {
    font-size: 1.1rem;
}

.company-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.company-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #f59e0b, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.company-info-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateX(3px);
}

.company-info-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.company-info-item i {
    font-size: 40px;
    color: #a3a3a3;
    flex-shrink: 0;
}

.company-info-item span {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

.stat-item {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.08) 100%);
    padding: 1.25rem 1rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.12) 100%);
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

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

.stat-label {
    font-size: 0.8rem;
    color: #a3a3a3;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.no-companies {
    text-align: center;
    padding: 3rem;
    color: #a3a3a3;
    font-size: 1.2rem;
}