/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo h2 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1003;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.lang-btn.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.lang-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-btn i {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-dropdown-item:last-child {
    border-bottom: none;
}

.lang-dropdown-item:hover {
    background: rgba(255, 107, 53, 0.2);
}

.lang-dropdown-item.active {
    background: #ff6b35;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(45, 45, 45, 0.4), rgba(255, 107, 53, 0.5)),
                url('images/ana_ekran.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 150px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 20s linear infinite;
    z-index: -1;
}

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

.hero-content {
    max-width: 600px;
    margin: 0;
    padding: 130px 50px 20px 20px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: right;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.hero-placeholder i {
    font-size: 5rem;
    color: #ff6b35;
}

/* Military Solutions Section */
.military-solutions {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 2;
}

.military-solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

.military-solutions h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b35;
    margin: 1rem auto;
    border-radius: 2px;
}

.military-intro {
    margin-bottom: 4rem;
}

.military-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.military-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d2d2d;
    font-weight: 700;
}

.military-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.military-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    min-height: 250px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #dee2e6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.image-placeholder:hover {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d9 100%);
}

.image-placeholder i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: #666;
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
}

.military-features {
    margin-bottom: 4rem;
}

.military-features h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
    font-weight: 700;
}

.features-grid-military {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.military-feature-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    align-items: center;
    opacity: 1;
    transform: translateY(0);
}

.military-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.feature-image .image-placeholder {
    min-height: 120px;
    width: 120px;
    border-radius: 10px;
}

.feature-image .image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.feature-image .image-placeholder p {
    font-size: 0.8rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.why-beren {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e9ecef;
}

.why-beren-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-beren-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.why-beren-list {
    list-style: none;
    padding: 0;
}

.why-beren-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
    padding-left: 1rem;
    line-height: 1.6;
}

.why-beren-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-beren-image .image-placeholder {
    min-height: 200px;
}

.advantages-image-container {
    position: relative;
    width: 450px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.advantages-image-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.advantages-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.advantages-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 15px;
}

.advantages-image:not([src=""]):not([src*="data:"]):not([src*="undefined"]) + .advantages-placeholder {
    display: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Entertainment Solutions Section */
.entertainment-solutions {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.entertainment-solutions::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)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

.entertainment-solutions h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 3rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.entertainment-intro {
    margin-bottom: 80px;
}

.entertainment-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.entertainment-text h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.entertainment-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.entertainment-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 600px;
    height: 338px;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.video-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.fullscreen-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.fullscreen-btn i {
    font-size: 1rem;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    background: #000000;
    z-index: 99999;
    overflow: hidden;
}

/* Body lock when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    background: transparent;
    border-radius: 20px;
    padding: 20px;
    border: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header h3 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    background: #000;
}

.modal-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Vertical format videos in modal */
#galleryModalVideo[src*="hotel_events_service.mp4"],
#galleryModalVideo[src*="BARAKA_TANITIM_2.mp4"] {
    object-fit: contain !important;
    background: #000 !important;
}

.video-modal.vertical-video .modal-video video {
    object-fit: contain !important;
    background: #000 !important;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
}

.play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.play-icon i {
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-placeholder p {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 0;
}

.game-experience {
    margin-bottom: 80px;
}

.game-experience h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.experience-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.experience-icon {
    font-size: 3rem;
    color: #ffa726;
    margin-bottom: 20px;
}

.experience-content h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.experience-content p {
    color: #e0e0e0;
    line-height: 1.6;
}

.business-model {
    margin-bottom: 80px;
}

.business-model h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.business-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.business-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.business-card.featured {
    border: 2px solid #ffa726;
    background: rgba(255, 167, 38, 0.1);
}

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

.business-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.business-header h4 {
    font-size: 1.5rem;
    color: #fff;
}

.business-icon {
    font-size: 2rem;
    color: #ffa726;
}

.business-content p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.business-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-badge {
    background: rgba(255, 167, 38, 0.2);
    color: #ffa726;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 167, 38, 0.3);
}

.info-button {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

/* System Modal Styles */
.system-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.system-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    margin: 2% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.system-modal-header {
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 20px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.system-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-system-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-system-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.system-modal-body {
    padding: 30px;
    color: white;
}

.system-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.system-option {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.system-option h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.system-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.system-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
}

.system-table td:first-child {
    font-weight: 600;
    color: #ffa726;
}

.system-table td:last-child {
    text-align: right;
    color: white;
    font-weight: 500;
}

.systems-title {
    color: #ff6b35;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

.system-features {
    margin-bottom: 30px;
}

.feature-section h4 {
    color: #ffa726;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-list {
    list-style: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.feature-list li {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 5px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #ff6b35;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.price-section {
    margin-top: 30px;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid rgba(255, 107, 53, 0.3);
}

.price-info {
    color: #ffa726;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-btn {
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.profit-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.profit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.profit-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.profit-text strong {
    color: #ffa726;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.profit-text p {
    color: #e0e0e0;
    margin: 0;
}

.why-system {
    margin-bottom: 80px;
}

.why-system h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.why-system-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.advantages-list {
    list-style: none;
    padding: 0;
}

.advantages-list li {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.service-options {
    margin-bottom: 80px;
}

.service-options h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    color: #ffa726;
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
}

.service-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

.contact-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-content h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 25px;
}

.cta-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-button.large {
    background: linear-gradient(135deg, #ff6b6b, #ffa726);
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    display: inline-block;
}

.cta-button.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

.gallery h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b35;
    margin: 1rem auto;
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, #2d2d2d, #1a1a1a);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ff6b35;
}

.gallery-placeholder i {
    font-size: 2rem;
    color: #ff6b35;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.videos-section {
    margin-top: 4rem;
}

.videos-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-item .video-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item[data-video="hotel_events_service.mp4"] video,
.video-item[data-video="BARAKA_TANITIM_2.mp4"] video {
    object-fit: contain;
    background: #000;
}

.video-item .video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #2d2d2d, #1a1a1a);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.video-item .play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.video-item:hover .play-icon {
    background: rgba(255, 107, 53, 1);
    transform: scale(1.1);
}

.video-item .play-icon i {
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.fullscreen-video-btn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-video-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-item h4 {
    padding: 1rem 1rem 0.5rem 1rem;
    font-size: 1rem;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 600;
}

.video-description {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.video-item.playing .video-placeholder {
    display: none;
}

.video-item.loading .video-placeholder {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

.video-item.loading .play-icon {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Story Section */
.story {
    padding: 100px 0;
    background: white;
    position: relative;
    z-index: 2;
}

.story h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

.story h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b35;
    margin: 1rem auto;
    border-radius: 2px;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-text h4 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.story-text ul li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-placeholder {
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ff6b35;
}

.story-placeholder i {
    font-size: 3rem;
    color: #ff6b35;
}

.timeline {
    position: relative;
    margin: 3rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: #ff6b35;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #ff6b35;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 2rem;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.story-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.story-footer p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    position: relative;
}

.contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ff6b35;
    margin: 1rem auto;
    border-radius: 2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #ff8a65);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
}

.contact-map {
    background: white;
    border-radius: 15px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.map-placeholder {
    text-align: center;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.map-placeholder i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        backdrop-filter: none;
        width: auto;
        text-align: left;
        padding: 0;
        box-shadow: none;
        z-index: auto;
    }
    
    .hamburger {
        display: none;
    }
    
    .language-switcher {
        position: static;
        margin-left: 20px;
        transform: none;
    }
    
    .lang-dropdown-menu {
        position: fixed;
        top: 80px;
        right: 20px;
        min-width: 150px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1001;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .language-switcher {
        position: absolute;
        top: 50%;
        right: 70px;
        transform: translateY(-50%);
        margin-left: 0;
        z-index: 1002;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .lang-dropdown-menu {
        position: fixed;
        top: 80px;
        right: 20px;
        min-width: 150px;
    }

    .hero-content {
        position: relative;
        max-width: 100%;
        padding: 130px 20px 20px 20px;
        text-align: center;
        right: auto;
        top: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .military-hero,
    .why-beren-content,
    .story-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .features-grid,
    .features-grid-military,
    .games-grid,
    .gallery-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .military-feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-item:nth-child(odd) {
        flex-direction: row !important;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 150px 20px 20px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
    
    .language-switcher {
        right: 60px;
    }
    
    .lang-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

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

    .entertainment-hero,
    .why-system-content,
    .contact-cta {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .entertainment-solutions h2 {
        font-size: 2.2rem;
    }
    
    .entertainment-text h3 {
        font-size: 1.8rem;
    }
    
    .game-experience h3,
    .business-model h3,
    .why-system h3,
    .service-options h3 {
        font-size: 2rem;
    }
    
    .business-options {
        grid-template-columns: 1fr;
    }
    
    .experience-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta {
        padding: 40px 20px;
    }
    
    .video-container {
        width: 350px;
        height: 197px;
    }
    
    .modal-content {
        width: 95%;
        padding: 15px;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .fullscreen-btn span {
        display: none;
    }
    
    .fullscreen-btn {
        padding: 8px 12px;
    }
    
    .advantages-image-container {
        width: 350px;
        height: 233px;
    }

    .feature-card,
    .game-card,
    .gallery-item,
    .video-item {
        margin: 0 10px;
    }

    .video-item .video-container {
        height: 150px;
    }

    .video-item .play-icon {
        width: 50px;
        height: 50px;
    }

    .video-item .play-icon i {
        font-size: 1.2rem;
    }

    .fullscreen-video-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .system-modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .system-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .system-modal-header {
        padding: 15px 20px;
    }

    .system-modal-header h3 {
        font-size: 1.2rem;
    }

    .system-modal-body {
        padding: 20px;
    }

    .system-table td {
        padding: 6px 8px;
        font-size: 0.9rem;
    }

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

    .feature-section h4 {
        font-size: 1.2rem;
    }

    .feature-list {
        padding: 15px;
    }

    .feature-list li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .feature-list li i {
        margin-right: 8px;
        width: 16px;
        font-size: 1rem;
    }

    .price-section {
        padding: 20px 15px;
    }

    .price-info {
        font-size: 1.1rem;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Partnership Modal Styles */
.partnership-info {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 10px;
    border: 1px solid #ff6b35;
}

.partnership-description h4 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.partnership-description p {
    color: #ecf0f1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.partnership-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.partnership-list li {
    color: #ecf0f1;
    padding: 10px 0;
    border-bottom: 1px solid #34495e;
    display: flex;
    align-items: center;
}

.partnership-list li:last-child {
    border-bottom: none;
}

.partnership-list li i {
    color: #ff6b35;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.contact-button-container {
    text-align: center;
    margin-top: 30px;
}

.contact-button {
    background: linear-gradient(135deg, #ff6b35 0%, #e74c3c 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.contact-button:hover {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.contact-button i {
    margin-right: 10px;
}

@media (max-width: 768px) {
    .partnership-info {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .partnership-description h4 {
        font-size: 1.1rem;
    }
    
    .partnership-description p {
        font-size: 0.9rem;
    }
    
    .partnership-list li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
    
    .contact-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
} 