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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #1e293b;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #3b82f6;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8fafc;
    color: #3b82f6;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #64748b;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #e2e8f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* USP Section */
.usp-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.usp-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

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

.usp-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1);
}

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

.usp-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.usp-card p {
    color: #64748b;
    line-height: 1.7;
}

/* Featured Game Section */
.featured-game {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b, #3b82f6, #8b5cf6);
    color: white;
}

.featured-game .section-header h2,
.featured-game .section-header p {
    color: white;
}

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

.game-media {
    position: relative;
}

.game-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.game-image:hover .play-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button i {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.game-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.stat-card i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #60a5fa;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.game-info h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white !important;
}

.game-info p {
    font-size: 1.2rem;
    color: white !important;
    margin-bottom: 30px;
    line-height: 1.7;
}

.game-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature span {
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: #f8fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1e293b;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 5px;
}

.contact-item p {
    color: #64748b;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.submit-button {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-widget a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .game-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .usp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .usp-card {
        padding: 30px 20px;
    }
    
    .game-info h3 {
        font-size: 2rem;
    }
    
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-widget a {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Shooting Simulation Section */
.shooting-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.shooting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.shooting-info h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ff6b35;
}

.shooting-info > p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
}

.shooting-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 120px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 5px;
    min-width: 24px;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
}

.feature-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

/* Safety Section Styles */
.safety-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #374151;
}

.safety-section h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: white;
    text-align: center;
}

.safety-intro {
    font-size: 1.1rem;
    color: #cbd5e1;
    text-align: center;
    margin-bottom: 30px;
}

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

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-height: 130px;
}

.safety-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.safety-item i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 5px;
    min-width: 24px;
}

.safety-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
}

.safety-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.shooting-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.demo-button {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.shooting-media {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shooting-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.thumb-image {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumb-image:hover,
.thumb-image.active {
    opacity: 1;
    border-color: #ff6b35;
    transform: translateY(-2px);
}

.shooting-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* Shooting Hero Section */
.shooting-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(255, 107, 53, 0.3) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: -1;
}

.shooting-hero .hero-text h1 {
    font-size: 4rem;
    color: #ff6b35;
    margin-bottom: 20px;
}

.shooting-hero .hero-text p {
    font-size: 1.5rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

/* Demo Section */
.demo-section {
    padding: 100px 0;
    background: #f8fafc;
}

.demo-video {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.demo-video video {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design for Shooting Section */
@media (max-width: 1024px) and (min-width: 769px) {
    .feature-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .safety-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .shooting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .shooting-info h3 {
        font-size: 2rem;
    }
    
    .shooting-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .shooting-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .safety-section h3 {
        font-size: 1.8rem;
    }
    
    .shooting-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .shooting-hero .hero-text p {
        font-size: 1.2rem;
    }
    
    /* Mobile Video Optimization */
     .hero-video {
         object-position: center center;
     }
     
     /* New Sections Mobile Responsive */
     .features-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }
     
     .features-section-dark .feature-item {
         padding: 25px 20px;
         min-height: 120px;
     }
     
     .features-section-dark .feature-item i {
         font-size: 1.5rem;
     }
     
     .features-section-dark .feature-content h4 {
         font-size: 1.1rem;
     }
     
     .safety-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }
     
     .safety-header h2 {
         font-size: 2.2rem;
     }
     
     .safety-intro {
         font-size: 1.1rem;
     }
     
     .safety-section-blue .safety-item {
         padding: 25px 20px;
         min-height: 130px;
     }
     
     .safety-section-blue .safety-item i {
         font-size: 1.5rem;
     }
     
     .safety-section-blue .safety-content h4 {
         font-size: 1.1rem;
     }
     
     .video-overlay {
         background: linear-gradient(
             135deg,
             rgba(0, 0, 0, 0.8) 0%,
             rgba(255, 107, 53, 0.4) 50%,
             rgba(0, 0, 0, 0.9) 100%
         );
     }
     
     /* Package Section Responsive */
     .package-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-top: 40px;
     }
     
     .package-item {
         padding: 20px;
         flex-direction: column;
         text-align: center;
         gap: 15px;
     }
     
     .package-note {
         margin-top: 30px;
         padding: 20px;
     }
}

/* Features Section with Dark White Background */
.features-section-dark {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.features-section-dark .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    min-height: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.features-section-dark .feature-item:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.features-section-dark .feature-item i {
    font-size: 1.8rem;
    color: #3b82f6;
    margin-top: 5px;
    min-width: 28px;
}

.features-section-dark .feature-content h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1e293b;
}

.features-section-dark .feature-content p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

/* Safety Section with Parliament Blue Background */
.safety-section-blue {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
}

.safety-header {
    text-align: center;
    margin-bottom: 60px;
}

.safety-header h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.safety-intro {
    font-size: 1.3rem;
    color: #e2e8f0;
    margin-bottom: 0;
}

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

.safety-section-blue .safety-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 35px 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 150px;
    backdrop-filter: blur(10px);
}

.safety-section-blue .safety-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.safety-section-blue .safety-item i {
    font-size: 1.8rem;
    color: #10b981;
    margin-top: 5px;
    min-width: 28px;
}

.safety-section-blue .safety-content h4 {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.safety-section-blue .safety-content p {
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Package Section */
.package-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.package-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #e2e8f0;
}

.package-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #4169E1;
}

.package-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4169E1, #5b7cfa);
    border-radius: 12px;
    flex-shrink: 0;
}

.package-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    border-radius: 4px;
}

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

.package-info {
    flex: 1;
}

.package-info h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 5px;
}

.package-count {
    display: inline-block;
    background: linear-gradient(135deg, #4169E1, #5b7cfa);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-note {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 16px;
    border-left: 4px solid #f59e0b;
}

.package-note p {
    font-size: 1rem;
    color: #92400e;
    line-height: 1.6;
    margin: 0;
}

/* ===== HOTELS PAGE STYLES ===== */

/* Hotels Hero Section */
.hotels-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hotels-hero .hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hotels-hero .hero-text p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.advantage-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #e2e8f0;
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 12px;
    flex-shrink: 0;
}

.advantage-icon i {
    font-size: 1.5rem;
    color: white !important;
}

.advantage-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 10px;
}

.advantage-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Game Experience Section */
.game-experience-section {
    padding: 100px 0;
    background: white;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f1f5f9;
    transform: translateX(10px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.experience-media {
    position: relative;
}

.gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.gallery-main:hover .play-overlay {
    opacity: 1;
}

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

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Sales Models Section */
.sales-models-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.sales-models-section .section-header h2,
.sales-models-section .section-header p {
    color: white;
}

.sales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.sales-model {
    background: white;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sales-model:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.sales-model.featured {
    border-color: #ff6b35;
    transform: scale(1.05);
}

.sales-model.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.model-header {
    text-align: center;
    margin-bottom: 30px;
}

.model-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.model-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 10px;
}

.model-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.model-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.model-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #64748b;
    line-height: 1.6;
}

.model-features i {
    color: #10b981;
    font-size: 1rem;
}

.model-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.model-cta {
    margin-top: auto;
}

.model-button {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.model-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Consultation Section */
.consultation-section {
    margin-top: 80px;
    text-align: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.consultation-content h3 {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.consultation-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.consultation-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.consultation-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-method {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b35;
}

.method-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

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

.contact-method h4 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.contact-method p {
    color: #64748b;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.method-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.method-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* Entertainment Centers Page Styles */
.entertainment-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    overflow: hidden;
}

.entertainment-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.entertainment-hero .hero-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Space Requirements Section */
.space-requirements-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.space-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.space-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.space-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.space-size {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.space-content p:last-child {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .space-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .space-card {
        padding: 1.5rem;
    }
    
    .space-size {
        font-size: 2rem;
    }
    
    .equipment-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .equipment-item {
        padding: 25px 20px;
    }
    
    .equipment-image {
        width: 100px;
        height: 100px;
    }
    
    .equipment-count {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Airsoft Poligon Specific Styles */
.airsoft-hero {
    position: relative;
}

section.hero.airsoft-hero .hero-text h1 {
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

section.hero.airsoft-hero .hero-text p {
    color: white !important;
    font-size: 1.3rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Airsoft Advantages Section */
.airsoft-advantages-section {
    padding: 80px 0;
    background: white;
    color: #333;
}

.airsoft-advantages-section .section-header h2 {
    color: #333;
}

.airsoft-advantages-section .section-header p {
    color: #666;
}

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

.advantage-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

.advantage-card .advantage-icon {
    width: 80px;
    height: 80px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.advantage-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    section.hero.airsoft-hero .hero-text h1 {
        font-size: 2.5rem;
        color: white !important;
    }
    
    section.hero.airsoft-hero .hero-text p {
        font-size: 1.1rem;
        color: white !important;
    }
}

/* Games Section */
.games-section {
    padding: 100px 0;
    background: #f8fafc;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.game-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

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

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 41, 59, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-details-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.game-content {
    padding: 30px;
}

.game-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

.game-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: #f8fafc;
    transition: all 0.3s ease;
}

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

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

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #1e293b;
    margin-bottom: 15px;
}

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

/* Safety Section */
.safety-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.safety-section .section-header h2,
.safety-section .section-header p {
    color: white;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

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

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

.safety-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.safety-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background: #f8fafc;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.advantage-item i {
    font-size: 1.5rem;
    color: #ff6b35;
    flex-shrink: 0;
}

.advantage-item span {
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

/* Responsive Styles for Entertainment Centers */
@media (max-width: 768px) {
    .entertainment-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .entertainment-hero .hero-text p {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-card {
        margin: 0 10px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 15px;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .safety-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .advantages-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .advantage-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
}

/* Responsive Styles for Hotels Page */
@media (max-width: 768px) {
    .hotels-hero .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hotels-hero .hero-text p {
        font-size: 1.2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sales-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sales-model {
        padding: 30px;
    }
    
    .sales-model.featured {
        transform: none;
    }
    
    .consultation-section {
        padding: 40px 20px;
    }
    
    .consultation-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-method {
        padding: 30px 20px;
    }
    
    .footer-contact-buttons,
    .footer-contact-buttons.horizontal {
        flex-direction: column !important;
        gap: 10px;
    }
    
    .footer-contact-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Footer Contact Buttons */
.footer-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.footer-contact-buttons.horizontal {
    flex-direction: row !important;
    flex-wrap: nowrap;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
}

.footer-contact-buttons.horizontal .footer-contact-btn {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    justify-content: center;
    white-space: nowrap;
}

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.footer-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
    color: white;
    text-decoration: none;
}

.footer-contact-btn i {
    font-size: 1.1rem;
}

/* Coming Soon Section */
.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

.coming-soon-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.coming-soon-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.coming-soon-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.coming-soon-features .feature i {
    font-size: 2rem;
    color: #ffd700;
}

.coming-soon-features .feature span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* AR Section Specific Styles */
.ar-section {
    background: linear-gradient(135deg, #4a69bd 0%, #1e3799 100%);
}

.ar-section .coming-soon-content h2 {
    color: #ffeaa7;
}

.ar-section .coming-soon-features .feature i {
    color: #ffeaa7;
}

@media (max-width: 768px) {
    .coming-soon-content h1 {
        font-size: 2.5rem;
    }
    
    .coming-soon-content h2 {
        font-size: 2rem;
    }
    
    .coming-soon-icon {
        font-size: 4rem;
    }
    
    .coming-soon-features {
        gap: 1rem;
    }
    
    .coming-soon-features .feature {
        min-width: 120px;
        padding: 0.8rem;
    }
}

/* About Page Styles */
.about-hero {
    background: url('public/Kontra.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-section {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 30px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.main-about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.main-about .about-text h2 {
    color: white;
}

.main-about .about-text p {
    color: rgba(255, 255, 255, 0.9);
}

.about-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.about-card:not(.main-about) .about-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.about-text p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

.website-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-weight: 600;
}

.website-link i {
    font-size: 1.2rem;
}

.locations-section {
    padding: 100px 0;
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.location-group h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.location-cards {
    display: grid;
    gap: 20px;
}

.location-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.location-card.upcoming {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #2d3436;
}

.location-card.upcoming:hover {
    border-color: #fab1a0;
}

.location-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 15px;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.location-card.upcoming .location-icon {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
}

.location-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
}

.location-card.upcoming h4 {
    color: #2d3436;
}

.products-section {
    padding: 100px 0;
    background: #f8fafc;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 25px;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.product-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Space Requirements Section */
.space-requirements-section {
    padding: 100px 0;
    background: #f8fafc;
}

.space-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.space-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.space-card.minimum {
    border-color: #10b981;
}

.space-card.maximum {
    border-color: #f59e0b;
}

.space-card.flexible {
    border-color: #4169E1;
    background: linear-gradient(135deg, #4169E1 0%, #5b7cfa 100%);
    color: white;
}

.space-icon {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.space-card.minimum .space-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.space-card.maximum .space-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.space-card.flexible .space-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.space-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.space-card.flexible .space-content h3 {
    color: white;
}

.space-size {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.space-card.flexible .space-size {
    color: white;
}

.space-content p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

.space-card.flexible .space-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Game System Section */
.game-system-section {
    padding: 100px 0;
    background: white;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.equipment-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #4169E1;
}

.equipment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4169E1 0%, #5b7cfa 100%);
}

.equipment-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    overflow: hidden;
}

.equipment-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.equipment-image i {
    font-size: 3rem;
    color: #4169E1;
}

.equipment-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.equipment-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.equipment-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4169E1 0%, #5b7cfa 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(65, 105, 225, 0.3);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .about-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .location-cards {
        grid-template-columns: 1fr;
    }
    
    .space-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .space-card {
        padding: 30px 20px;
    }
    
    .space-size {
        font-size: 2rem;
    }
}

/* Contact Page Styles */

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4169E1, #5b7cfa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

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

.contact-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.faq-question i {
    color: #4169E1;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}



/* Mobile Responsive Styles for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Gallery Page */
.gallery-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-section {
    padding: 80px 0;
    background: #f8fafc;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.video-thumb {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.video-thumb .play-overlay {
    opacity: 1; /* Galeride oynat tuşu her zaman görünür olsun */
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
}

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

.video-placeholder {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 600;
    gap: 10px;
}

.video-placeholder i {
    color: #ff6b35;
}

.video-meta {
    padding: 16px 20px;
    text-align: center;
}

.video-meta h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}