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

:root {
    --deep-space: #0a0a1a;
    --space-blue: #1a1a3a;
    --orbit-orange: #ff4500;
    --aqua-blue: #00ffff;
    --metallic-silver: #c0c0c0;
    --neon-pink: #ff00ff;
    --electric-blue: #0080ff;
    --cosmic-purple: #6a0dad;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: var(--deep-space);
    color: var(--metallic-silver);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--aqua-blue);
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--aqua-blue);
    text-shadow: 0 0 10px var(--aqua-blue), 0 0 20px var(--aqua-blue), 0 0 30px var(--aqua-blue);
    order: 1;
}

.logo-img {
    height: 35px;
    width: auto;
    max-width: 200px;
    filter: drop-shadow(0 0 10px var(--aqua-blue));
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 15px var(--aqua-blue)) brightness(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    order: 3;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--aqua-blue);
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 0 5px var(--aqua-blue);
}

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

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

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

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

.nav-menu a {
    color: var(--metallic-silver);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--aqua-blue);
    text-shadow: 0 0 5px var(--aqua-blue), 0 0 10px var(--aqua-blue), 0 0 15px var(--aqua-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--aqua-blue);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--aqua-blue);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, var(--space-blue) 0%, var(--deep-space) 70%);
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--aqua-blue), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--metallic-silver), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--orbit-orange), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--aqua-blue), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--metallic-silver), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.glow {
    color: var(--aqua-blue);
    text-shadow: 
        0 0 5px var(--aqua-blue),
        0 0 10px var(--aqua-blue),
        0 0 15px var(--aqua-blue),
        0 0 20px var(--aqua-blue);
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.subtitle {
    display: block;
    color: var(--orbit-orange);
    font-size: 0.7em;
    margin-top: 0.5rem;
    text-shadow: 
        0 0 5px var(--orbit-orange),
        0 0 10px var(--orbit-orange),
        0 0 15px var(--orbit-orange),
        0 0 20px var(--orbit-orange);
}

@keyframes pulse-glow {
    0% { text-shadow: 0 0 3px var(--aqua-blue), 0 0 6px var(--aqua-blue), 0 0 9px var(--aqua-blue); }
    100% { text-shadow: 0 0 5px var(--aqua-blue), 0 0 10px var(--aqua-blue), 0 0 15px var(--aqua-blue); }
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--metallic-silver);
    font-style: italic;
}

.cta-button {
    background: linear-gradient(45deg, var(--orbit-orange), var(--neon-pink));
    border: none;
    padding: 1rem 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    cursor: pointer;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(255, 69, 0, 0.8);
}

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

.cta-button:hover::before {
    left: 100%;
}

.planet {
    position: absolute;
    right: 10%;
    top: 20%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at 30% 30%, var(--orbit-orange), var(--cosmic-purple));
    border-radius: 50%;
    box-shadow: 
        0 0 50px rgba(255, 69, 0, 0.3),
        inset -20px -20px 50px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

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

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--aqua-blue);
    text-shadow: 0 0 10px var(--aqua-blue), 0 0 20px var(--aqua-blue), 0 0 30px var(--aqua-blue);
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--space-blue) 100%);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.retro-computer {
    background: var(--metallic-silver);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    width: 100%; /* Ensure it takes full width of its container */
    max-width: 500px; /* Max width for desktop */
    margin: 0 auto; /* Center it */
}

.screen {
    background: var(--deep-space);
    border: 3px solid var(--aqua-blue);
    border-radius: 10px;
    padding: 1.5rem; /* Slightly less padding */
    position: relative;
    overflow: hidden;
    height: 200px; /* Fixed height for the screen */
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 255, 0.1) 2px,
        rgba(0, 255, 255, 0.1) 4px
    );
    animation: scan 2s linear infinite;
}

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

.terminal-text {
    font-family: 'Courier New', monospace;
    color: var(--aqua-blue);
    font-size: 1rem;
    line-height: 1.5;
    text-shadow: 0 0 5px var(--aqua-blue), 0 0 10px var(--aqua-blue), 0 0 15px var(--aqua-blue);
    white-space: pre-wrap; /* Preserve whitespace and wrap text */
    overflow: hidden; /* Hide overflowing text */
    border-right: .15em solid var(--aqua-blue); /* Typing cursor */
    animation: 
        typing 4s steps(40, end) forwards,
        blink-caret .75s step-end infinite;
    width: 0; /* Start with zero width for typing effect */
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--aqua-blue); }
}

/* Design Section */
.design-section {
    background: var(--deep-space);
}

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

.guideline-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--aqua-blue);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guideline-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.color-palette {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--metallic-silver);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.2);
}

.deep-space { background: var(--deep-space); }
.orbit-orange { background: var(--orbit-orange); }
.aqua-blue { background: var(--aqua-blue); }
.metallic-silver { background: var(--metallic-silver); }

.typography-examples {
    margin: 1rem 0;
}

.font-example {
    margin: 0.5rem 0;
    font-weight: bold;
}

.atomic {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    text-shadow: 0 0 5px var(--aqua-blue), 0 0 10px var(--aqua-blue), 0 0 15px var(--aqua-blue);
}

.geometric {
    font-family: 'Exo 2', sans-serif;
    color: var(--orbit-orange);
    text-shadow: 0 0 5px var(--orbit-orange);
}

.futuristic {
    font-family: 'Orbitron', monospace;
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}

.effects-demo {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.neon-box, .hologram {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: bold;
}

.neon-box {
    background: transparent;
    border: 2px solid var(--aqua-blue);
    color: var(--aqua-blue);
    text-shadow: 0 0 5px var(--aqua-blue), 0 0 10px var(--aqua-blue), 0 0 15px var(--aqua-blue);
    box-shadow: 0 0 10px var(--aqua-blue);
}

.hologram {
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
    animation: hologram-flicker 2s ease-in-out infinite;
}

@keyframes hologram-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Inspiration Section */
.inspiration {
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--deep-space) 100%);
}

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

.inspiration-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--orbit-orange);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.inspiration-card:hover {
    border-color: var(--aqua-blue);
    box-shadow: 0 5px 20px rgba(0, 255, 255, 0.2);
}

.inspiration-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    margin-bottom: 1rem;
}

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

.inspiration-card li {
    padding: 0.3rem 0;
    border-left: 2px solid var(--aqua-blue);
    padding-left: 1rem;
    margin: 0.5rem 0;
}

/* Footer */
.footer {
    background: var(--deep-space);
    border-top: 1px solid var(--aqua-blue);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p, .footer-section a {
    color: var(--metallic-silver);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--aqua-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--space-blue);
    color: var(--metallic-silver);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--aqua-blue);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-menu a {
        font-size: 1.5rem;
        padding: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guidelines-grid {
        grid-template-columns: 1fr;
    }
    
    .inspiration-grid {
        grid-template-columns: 1fr;
    }
    
    .planet {
        display: none;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--deep-space);
}

::-webkit-scrollbar-thumb {
    background: var(--aqua-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--orbit-orange);
}



/* Additional Styles for New Pages */

/* Active Navigation State */
.nav-menu a.active {
    color: var(--aqua-blue);
    text-shadow: 0 0 10px var(--aqua-blue), 0 0 20px var(--aqua-blue), 0 0 30px var(--aqua-blue);
}

.nav-menu a.active::after {
    width: 100%;
}

/* Small Hero Section for Sub-pages */
.hero-small {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, var(--space-blue) 0%, var(--deep-space) 70%);
    overflow: hidden;
}

/* Main Content Sections */
.main-content {
    padding: 5rem 0;
    background: var(--deep-space);
}

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

.content-text h2 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--aqua-blue), 0 0 20px var(--aqua-blue), 0 0 30px var(--aqua-blue);
}

.content-text h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    text-shadow: 0 0 5px var(--orbit-orange);
}

.content-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--aqua-blue);
    border-radius: 10px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.info-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.info-card li {
    padding: 0.5rem 0;
    border-left: 2px solid var(--aqua-blue);
    padding-left: 1rem;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.info-card li:hover {
    border-left-color: var(--orbit-orange);
    color: var(--orbit-orange);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--cosmic-purple) 100%);
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--aqua-blue);
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--metallic-silver);
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--aqua-blue);
    background: rgba(10, 10, 26, 0.8);
    color: var(--metallic-silver);
    border-radius: 5px;
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--orbit-orange);
    box-shadow: 0 0 10px var(--orbit-orange);
}

.newsletter-form input::placeholder {
    color: rgba(192, 192, 192, 0.6);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--orbit-orange), var(--neon-pink));
    border: none;
    color: white;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(255, 69, 0, 0.8);
}

/* Design Page Specific Styles */
.design-detail-section {
    padding: 5rem 0;
    background: var(--deep-space);
}

.color-showcase {
    max-width: 1000px;
    margin: 0 auto;
}

.color-group h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.color-group p {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.color-palette-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.color-card {
    text-align: center;
    background: rgba(26, 26, 58, 0.3);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--aqua-blue);
    transition: all 0.3s ease;
}

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

.color-swatch-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    border: 3px solid var(--metallic-silver);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.color-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 0.5rem;
}

.color-card p {
    font-family: 'Courier New', monospace;
    color: var(--metallic-silver);
    font-size: 0.9rem;
}

/* Typography Section */
.typography-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--deep-space) 100%);
}

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

.font-demo {
    text-align: center;
    background: rgba(10, 10, 26, 0.5);
    border: 1px solid var(--orbit-orange);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.font-demo h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    margin-bottom: 1.5rem;
}

.font-example-large {
    font-size: 2rem;
    margin: 1.5rem 0;
    font-weight: bold;
}

.font-demo p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* UI Elements Section */
.ui-elements-section {
    padding: 5rem 0;
    background: var(--deep-space);
}

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

.element-demo {
    background: rgba(26, 26, 58, 0.3);
    border: 1px solid var(--aqua-blue);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.element-demo h3 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 1.5rem;
}

.button-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.neon-button {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.neon-button.primary {
    background: var(--aqua-blue);
    color: var(--deep-space);
    box-shadow: 0 0 15px var(--aqua-blue);
}

.neon-button.secondary {
    background: transparent;
    color: var(--orbit-orange);
    border: 2px solid var(--orbit-orange);
    box-shadow: 0 0 15px var(--orbit-orange);
}

.neon-button.accent {
    background: var(--neon-pink);
    color: white;
    box-shadow: 0 0 15px var(--neon-pink);
}

.neon-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.hologram-panel {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--aqua-blue);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hologram-panel h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 1rem;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 1rem auto 0;
    background: var(--orbit-orange);
    box-shadow: 0 0 15px var(--orbit-orange);
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.active {
    background: #00ff00;
    box-shadow: 0 0 15px #00ff00;
}

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

.retro-terminal {
    background: var(--deep-space);
    border: 2px solid var(--aqua-blue);
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
}

.terminal-header {
    background: var(--aqua-blue);
    color: var(--deep-space);
    padding: 0.5rem 1rem;
    font-family: 'Courier New', monospace;
    font-weight: bold;
}

.terminal-body {
    padding: 1rem;
    font-family: 'Courier New', monospace;
    color: var(--aqua-blue);
    min-height: 100px;
}

.terminal-line {
    margin: 0.5rem 0;
    text-shadow: 0 0 5px var(--aqua-blue), 0 0 10px var(--aqua-blue), 0 0 15px var(--aqua-blue);
}

/* Best Practices Section */
.best-practices-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--deep-space) 100%);
}

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

.practice-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--orbit-orange);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.practice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.practice-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.practice-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    margin-bottom: 1rem;
}

/* Inspiration Page Specific Styles */
.inspiration-detail-section {
    padding: 5rem 0;
    background: var(--deep-space);
}

.inspiration-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.inspiration-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: rgba(26, 26, 58, 0.3);
    border: 1px solid var(--aqua-blue);
    border-radius: 15px;
    padding: 2rem;
    align-items: center;
}

.inspiration-item:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.inspiration-item:nth-child(even) .inspiration-image-placeholder {
    order: 2;
}

.inspiration-image-placeholder {
    height: 200px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.inspiration-image-placeholder.jetsons {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
}

.inspiration-image-placeholder.forbidden-planet {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.inspiration-image-placeholder.tron {
    background: linear-gradient(45deg, #00ffff, #ff00ff);
}

.inspiration-image-placeholder.blade-runner {
    background: linear-gradient(45deg, #ff4500, #ffd700);
}

.inspiration-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.inspiration-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--aqua-blue);
    color: var(--aqua-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Orbitron', monospace;
}

/* NASA Section */
.nasa-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--cosmic-purple) 100%);
}

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

.nasa-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.nasa-posters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.poster-placeholder {
    aspect-ratio: 2/3;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    font-family: 'Orbitron', monospace;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.poster-placeholder.mars {
    background: linear-gradient(45deg, #ff4500, #ff8c00);
}

.poster-placeholder.europa {
    background: linear-gradient(45deg, #4169e1, #00bfff);
}

.poster-placeholder.kepler {
    background: linear-gradient(45deg, #8a2be2, #da70d6);
}

.poster-placeholder h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.poster-placeholder p {
    font-size: 0.8rem;
    font-style: italic;
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: var(--deep-space);
}

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

.game-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--orbit-orange);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.game-image-placeholder {
    height: 150px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.game-image-placeholder.fallout {
    background: linear-gradient(45deg, #ffd700, #ff6347);
}

.game-image-placeholder.outer-worlds {
    background: linear-gradient(45deg, #ff1493, #00ced1);
}

.game-image-placeholder.no-mans-sky {
    background: linear-gradient(45deg, #ff69b4, #00ff7f);
}

.game-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    margin-bottom: 1rem;
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.game-features span {
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid var(--orbit-orange);
    color: var(--orbit-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Orbitron', monospace;
}

/* Modern Examples Section */
.modern-examples-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--deep-space) 100%);
}

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

.example-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--aqua-blue);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.example-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 1rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .color-palette-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .typography-showcase {
        grid-template-columns: 1fr;
    }
    
    .elements-grid {
        grid-template-columns: 1fr;
    }
    
    .practices-grid {
        grid-template-columns: 1fr;
    }
    
    .inspiration-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .inspiration-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .inspiration-item:nth-child(even) .inspiration-image-placeholder {
        order: 0;
    }
    
    .nasa-content {
        grid-template-columns: 1fr;
    }
    
    .nasa-posters {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
}


/* Additional Styles for Services and Destinations Pages */

/* Service Cards */
.services-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--aqua-blue);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.price-display {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--orbit-orange);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.feature {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--aqua-blue);
    color: var(--aqua-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Orbitron', monospace;
}

/* Fleet Showcase */
.fleet-tech-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--deep-space) 100%);
}

.fleet-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.fleet-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--orbit-orange);
    border-radius: 15px;
    padding: 2rem;
    align-items: center;
}

.fleet-item.reverse {
    grid-template-columns: 1fr 400px;
}

.fleet-item.reverse .fleet-image {
    order: 2;
}

.fleet-image {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 5px;
}

.spec-label {
    color: var(--metallic-silver);
    font-size: 0.9rem;
}

.spec-value {
    color: var(--aqua-blue);
    font-weight: bold;
    font-family: 'Orbitron', monospace;
}

.fleet-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.amenity {
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid var(--orbit-orange);
    color: var(--orbit-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Orbitron', monospace;
}

/* Service Levels */
.service-levels-section {
    padding: 5rem 0;
    background: var(--deep-space);
}

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

.level-card {
    background: rgba(26, 26, 58, 0.5);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.level-card.economy {
    border: 2px solid var(--metallic-silver);
}

.level-card.business {
    border: 2px solid var(--aqua-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.level-card.first-class {
    border: 2px solid var(--orbit-orange);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
}

.level-card:hover {
    transform: translateY(-5px);
}

.level-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.level-card.economy .level-header h3 {
    color: var(--metallic-silver);
}

.level-card.business .level-header h3 {
    color: var(--aqua-blue);
}

.level-card.first-class .level-header h3 {
    color: var(--orbit-orange);
}

.level-price {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', monospace;
}

.level-features {
    text-align: left;
    margin: 1.5rem 0;
}

.feature-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Booking Process */
.booking-process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--cosmic-purple) 100%);
}

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

.step-item {
    text-align: center;
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--aqua-blue);
    border-radius: 15px;
    padding: 2rem;
}

.step-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: bold;
    color: var(--orbit-orange);
    text-shadow: 0 0 10px var(--orbit-orange);
    margin-bottom: 1rem;
}

.step-item h3 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 1rem;
}

/* Destinations Styles */
.destinations-showcase {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.destination-item {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: rgba(26, 26, 58, 0.3);
    border: 1px solid var(--aqua-blue);
    border-radius: 15px;
    padding: 2rem;
    align-items: center;
}

.destination-item.reverse {
    grid-template-columns: 1fr 400px;
}

.destination-item.reverse .destination-image {
    order: 2;
}

.destination-image {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.destination-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 5px;
}

.stat-label {
    color: var(--metallic-silver);
    font-size: 0.9rem;
}

.stat-value {
    color: var(--orbit-orange);
    font-weight: bold;
    font-family: 'Orbitron', monospace;
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.highlight {
    background: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--aqua-blue);
    color: var(--aqua-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Orbitron', monospace;
}

.destination-price {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 1rem;
    text-shadow: 0 0 5px var(--orbit-orange);
}

/* Exotic Destinations */
.exotic-destinations-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--deep-space) 100%);
}

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

.exotic-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--orbit-orange);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.exotic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.2);
}

.exotic-image {
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.exotic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exotic-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    margin-bottom: 1rem;
}

.exotic-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.exotic-features span {
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid var(--orbit-orange);
    color: var(--orbit-orange);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-family: 'Orbitron', monospace;
}

.exotic-price {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
    text-shadow: 0 0 5px var(--aqua-blue), 0 0 10px var(--aqua-blue), 0 0 15px var(--aqua-blue);
}

/* Seasonal Section */
.seasonal-section {
    padding: 5rem 0;
    background: var(--deep-space);
}

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

.seasonal-description p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.seasonal-events {
    display: grid;
    gap: 1.5rem;
}

.event-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--neon-pink);
    border-radius: 10px;
    padding: 1.5rem;
}

.event-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-pink);
    margin-bottom: 0.5rem;
}

.event-date {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    font-weight: bold;
    margin-top: 0.5rem;
}

/* Travel Tips */
.travel-tips-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--space-blue) 100%);
}

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

.tip-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--aqua-blue);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 1rem;
}

.tip-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.tip-card li {
    padding: 0.5rem 0;
    border-left: 2px solid var(--orbit-orange);
    padding-left: 1rem;
    margin: 0.5rem 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--space-blue) 100%);
}

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

.testimonial-card {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--neon-pink);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--metallic-silver);
}

.testimonial-author {
    font-family: 'Orbitron', monospace;
    color: var(--neon-pink);
    font-weight: bold;
}

/* Price Tags */
.price-tag {
    background: linear-gradient(45deg, var(--orbit-orange), var(--neon-pink));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    margin-top: 1rem;
    display: inline-block;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .service-cards-large {
        grid-template-columns: 1fr;
    }
    
    .fleet-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fleet-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .fleet-item.reverse .fleet-image {
        order: 0;
    }
    
    .fleet-specs {
        grid-template-columns: 1fr;
    }
    
    .service-levels-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .destination-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .destination-item.reverse {
        grid-template-columns: 1fr;
    }
    
    .destination-item.reverse .destination-image {
        order: 0;
    }
    
    .destination-stats {
        grid-template-columns: 1fr;
    }
    
    .exotic-grid {
        grid-template-columns: 1fr;
    }
    
    .seasonal-content {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}



/* Booking Page Styles */
.booking-destination-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--space-blue) 0%, var(--deep-space) 100%);
}

.mars-section {
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--space-blue) 100%);
}

.destination-booking-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--aqua-blue);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    backdrop-filter: blur(15px);
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.price-range {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px var(--orbit-orange);
}

.booking-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.main-image {
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbnails {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-thumbnails img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumbnails img:hover {
    border-color: var(--aqua-blue);
    transform: scale(1.05);
}

.booking-story {
    background: rgba(26, 26, 58, 0.6);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 4px solid var(--neon-pink);
}

.booking-story h3 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--metallic-silver);
}

.story-author {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-weight: bold;
    text-align: right;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.booking-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.package-option {
    background: rgba(26, 26, 58, 0.8);
    border: 2px solid var(--metallic-silver);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.package-option.featured {
    border-color: var(--orbit-orange);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.3);
    transform: scale(1.05);
}

.package-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.package-option h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.package-option.featured h4 {
    color: var(--orbit-orange);
}

.package-price {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: bold;
    color: var(--neon-pink);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--neon-pink);
}

.package-option ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.package-option li {
    padding: 0.5rem 0;
    border-left: 2px solid var(--aqua-blue);
    padding-left: 1rem;
    margin: 0.5rem 0;
    color: var(--metallic-silver);
}

.package-option.featured li {
    border-left-color: var(--orbit-orange);
}

.book-button {
    background: linear-gradient(45deg, var(--aqua-blue), var(--neon-pink));
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.package-option.featured .book-button {
    background: linear-gradient(45deg, var(--orbit-orange), var(--neon-pink));
}

.booking-process-section {
    padding: 5rem 0;
    background: var(--deep-space);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-step {
    text-align: center;
    background: rgba(26, 26, 58, 0.6);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
}

.timeline-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--aqua-blue);
    transform: translateY(-50%);
}

.timeline-step:last-child::after {
    display: none;
}

.step-number {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: bold;
    color: var(--orbit-orange);
    text-shadow: 0 0 15px var(--orbit-orange);
    margin-bottom: 1rem;
}

.timeline-step h3 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 1rem;
}

.contact-booking-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--space-blue) 100%);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-method {
    background: rgba(10, 10, 26, 0.6);
    border: 1px solid var(--neon-pink);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.contact-method h3 {
    font-family: 'Orbitron', monospace;
    color: var(--neon-pink);
    margin-bottom: 1rem;
}

.contact-info {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* Responsive Design for Booking Page */
@media (max-width: 768px) {
    .booking-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr;
    }
    
    .gallery-thumbnails img {
        height: 80px;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
    
    .package-option.featured {
        transform: none;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .timeline-step::after {
        display: none;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}





/* Game Section Styles */
.game-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--space-blue) 50%, var(--deep-space) 100%);
    position: relative;
    overflow: hidden;
}

.game-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.game-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-intro p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--metallic-silver);
}

.game-controls-info {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--aqua-blue);
    border-radius: 10px;
    padding: 15px;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
}

.game-container-wrapper {
    display: flex;
    justify-content: center;
    margin: 40px 0;
    position: relative;
}

.game-frame {
    width: 820px;
    height: 640px;
    border: 3px solid var(--aqua-blue);
    border-radius: 15px;
    background: var(--deep-space);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.game-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--aqua-blue), var(--orbit-orange), var(--aqua-blue));
    border-radius: 18px;
    z-index: -1;
    opacity: 0.7;
}

.game-footer {
    text-align: center;
    margin-top: 30px;
}

.game-footer p {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--aqua-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Game Section */
@media (max-width: 900px) {
    .game-frame {
        width: 95%;
        height: 500px;
    }
}

@media (max-width: 600px) {
    .game-section {
        padding: 60px 0;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .game-intro p {
        font-size: 1rem;
    }
    
    .game-controls-info {
        font-size: 0.8rem;
        padding: 12px;
    }
}

/* Animation for game section */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 255, 255, 0.3),
            inset 0 0 30px rgba(0, 255, 255, 0.1);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(0, 255, 255, 0.5),
            inset 0 0 30px rgba(0, 255, 255, 0.2);
    }
}

.game-frame:hover {
    animation: pulse-glow 2s ease-in-out infinite;
}


/* Mobile Slideshow Styles */
.mobile-slideshow {
    display: none;
    position: relative;
    width: 100%;
    background: var(--deep-space);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--aqua-blue);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 250px;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--aqua-blue);
    padding: 20px 15px 15px;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.slideshow-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(10, 10, 26, 0.9);
}

.prev-btn, .next-btn {
    background: linear-gradient(45deg, var(--aqua-blue), var(--electric-blue));
    border: none;
    color: var(--deep-space);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--aqua-blue);
}

.slide-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--aqua-blue);
    box-shadow: 0 0 10px var(--aqua-blue);
}

/* Mobile Layout Improvements */
@media (max-width: 768px) {
    /* Hide desktop gallery, show mobile slideshow */
    .booking-gallery .main-image,
    .booking-gallery .gallery-thumbnails {
        display: none;
    }
    
    .mobile-slideshow {
        display: block;
        margin-bottom: 20px;
    }
    
    /* Improve mobile card layout */
    .destination-booking-card {
        margin-bottom: 30px;
        padding: 20px;
    }
    
    .booking-story {
        margin: 30px 0;
    }
    
    .story-content {
        max-height: none;
        padding: 20px;
    }
    
    .story-content p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .booking-options {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .package-option {
        width: 100%;
        padding: 25px;
    }
    
    .package-option h4 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .package-price {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .package-option ul {
        margin-bottom: 25px;
    }
    
    .package-option li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .book-button {
        width: 100%;
        padding: 15px;
        font-size: 16px;
    }
    
    /* Improve mobile text readability */
    .booking-header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .price-range {
        font-size: 18px;
    }
    
    .booking-story h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
}

/* Slideshow Animation */
.slide {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* Destination Book Now Button Styles */
.destination-book-btn {
    display: inline-block;
    background: linear-gradient(45deg, var(--orbit-orange), #ff6600);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

.destination-book-btn:hover {
    background: linear-gradient(45deg, #ff6600, var(--orbit-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.5);
    border-color: var(--orbit-orange);
}

.destination-book-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 69, 0, 0.4);
}

/* Ensure proper spacing in guideline cards */
.guideline-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.guideline-card .price-tag {
    margin-top: auto;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .destination-book-btn {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .guideline-card {
        min-height: 320px;
    }
}


/* Footer Newsletter Form Styles */
.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.footer-newsletter-form input {
    background: rgba(26, 26, 58, 0.8);
    border: 2px solid var(--aqua-blue);
    color: var(--metallic-silver);
    padding: 12px 15px;
    border-radius: 5px;
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--orbit-orange);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.footer-newsletter-form input::placeholder {
    color: rgba(192, 192, 192, 0.6);
}

.footer-newsletter-form button {
    background: linear-gradient(45deg, var(--orbit-orange), #ff6600);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter-form button:hover {
    background: linear-gradient(45deg, #ff6600, var(--orbit-orange));
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-newsletter-form {
        max-width: 300px;
        margin: 15px auto 0;
    }
}



/* Retro Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--deep-space);
    border: 3px solid var(--aqua-blue);
    border-radius: 50%;
    color: var(--aqua-blue);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    text-shadow: 0 0 10px var(--aqua-blue), 0 0 20px var(--aqua-blue), 0 0 30px var(--aqua-blue);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--aqua-blue);
    color: var(--deep-space);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Show only on mobile */
@media (max-width: 768px) {
    .scroll-top-btn {
        display: flex;
    }
}

@media (min-width: 769px) {
    .scroll-top-btn {
        display: none;
    }
}


/* Slideshow Styles */
.destination-slideshow {
    margin: 2rem 0;
    background: rgba(0, 20, 40, 0.8);
    border-radius: 15px;
    padding: 1rem;
    border: 2px solid var(--accent-color);
}

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    font-size: 1.1rem;
    text-align: center;
}

.slideshow-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding: 0 1rem;
}

.prev-btn, .next-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--secondary-color);
}

/* Destination Cards */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.destination-card {
    background: rgba(0, 20, 40, 0.9);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.destination-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.destination-card.new-destination {
    border-color: var(--secondary-color);
    background: rgba(40, 20, 0, 0.9);
}

.destination-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.new-badge {
    background: var(--secondary-color);
    animation: pulse 2s infinite;
}

.destination-content {
    padding: 1.5rem;
}

.destination-content h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.feature-tag {
    background: rgba(0, 255, 255, 0.2);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--accent-color);
}

.price-range {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: bold;
    margin: 1rem 0;
}

.special-price {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.destination-button {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
}

.destination-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.new-button {
    background: linear-gradient(45deg, var(--secondary-color), #ff6b35);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: rgba(0, 20, 40, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Booking Packages */
.booking-packages {
    margin: 3rem 0;
}

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

.package-option {
    background: rgba(0, 20, 40, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    position: relative;
    transition: all 0.3s ease;
}

.package-option.featured {
    border-color: var(--secondary-color);
    background: rgba(40, 20, 0, 0.9);
    transform: scale(1.05);
}

.package-option.exclusive {
    border-color: #ff6b35;
    background: rgba(40, 10, 0, 0.9);
}

.package-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.package-price {
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: bold;
    text-align: center;
    margin: 1rem 0;
}

.book-button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.book-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.featured-button {
    background: var(--secondary-color);
}

.exclusive-button {
    background: #ff6b35;
}

/* Badges and Labels */
.new-badge-hero {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Timeline Styles */
.process-timeline, .schedule-timeline, .life-timeline, .activity-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.timeline-step, .schedule-item, .life-item, .activity-item {
    background: rgba(0, 20, 40, 0.8);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    position: relative;
}

.step-number {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.schedule-time, .life-time, .activity-time {
    background: var(--accent-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Contact Methods */
.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: rgba(0, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
}

/* Newsletter */
.newsletter-section {
    background: rgba(0, 20, 40, 0.9);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 15px;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
}

.newsletter-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .package-option.featured {
        transform: none;
    }
    
    .slideshow-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slide img {
        height: 250px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .process-timeline, .schedule-timeline {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Additional Destination Page Styles */
.destination-detail-section {
    padding: 2rem 0;
}

.destination-overview {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonial-section {
    margin: 3rem 0;
    text-align: center;
}

.testimonial-card {
    background: rgba(0, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-author {
    color: var(--accent-color);
    font-weight: bold;
    margin-top: 1rem;
}

.testimonial-rating {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.vehicle-spotlight {
    background: rgba(0, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 2px solid var(--accent-color);
}

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

.vehicle-specs {
    margin-top: 1rem;
}

.spec-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .vehicle-content {
        grid-template-columns: 1fr;
    }
}


/* Vehicle Cards */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.vehicle-card {
    background: rgba(0, 20, 40, 0.9);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    position: relative;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.3);
    border-color: var(--secondary-color);
}

.vehicle-card.new-vehicle {
    border-color: var(--secondary-color);
    background: rgba(40, 20, 0, 0.9);
}

.vehicle-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.vehicle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.vehicle-badge.new-badge {
    background: var(--secondary-color);
    animation: pulse 2s infinite;
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-content h3 {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.vehicle-subtitle {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.vehicle-specs {
    margin: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

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

.spec-label {
    color: #ccc;
    font-size: 0.9rem;
}

.spec-value {
    color: var(--accent-color);
    font-weight: bold;
}

.vehicle-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.vehicle-features .feature-tag {
    background: rgba(0, 255, 255, 0.2);
    color: var(--accent-color);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid var(--accent-color);
}

/* Vehicle Spotlight */
.vehicle-spotlight-section {
    margin: 4rem 0;
}

.vehicle-spotlight {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9), rgba(40, 20, 0, 0.9));
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--secondary-color);
}

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

.spotlight-features {
    margin: 2rem 0;
}

.spotlight-feature {
    margin-bottom: 1.5rem;
}

.spotlight-feature h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.spotlight-button {
    background: linear-gradient(45deg, var(--secondary-color), #ff6b35);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

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

.spotlight-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 15px;
}

/* Fleet Statistics */
.fleet-stats-section {
    background: rgba(0, 20, 40, 0.8);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 15px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid var(--accent-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #ccc;
    font-size: 0.9rem;
}

/* Maintenance Section */
.maintenance-section {
    margin: 3rem 0;
}

.maintenance-content {
    background: rgba(0, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
}

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

.safety-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.safety-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Booking CTA */
.booking-cta-section {
    background: linear-gradient(135deg, rgba(0, 20, 40, 0.9), rgba(20, 0, 40, 0.9));
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: 20px;
    text-align: center;
}

.cta-content h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button.primary {
    background: var(--accent-color);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

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

/* Improved Destinations Layout */
.destinations-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 2rem 0;
}

.destination-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: rgba(0, 20, 40, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--accent-color);
    align-items: center;
    transition: all 0.3s ease;
}

.destination-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.2);
}

.destination-item.reverse {
    direction: rtl;
}

.destination-item.reverse > * {
    direction: ltr;
}

.destination-image {
    position: relative;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

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

.destination-item:hover .destination-image img {
    transform: scale(1.05);
}

.destination-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin: 1rem 0;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #ccc;
}

.stat-value {
    font-weight: bold;
    color: var(--accent-color);
}

.destination-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.highlight {
    background: rgba(0, 255, 255, 0.2);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--accent-color);
}

.destination-price {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-top: 1rem;
}

/* Exotic Destinations */
.exotic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.exotic-card {
    background: rgba(0, 20, 40, 0.8);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

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

.exotic-image {
    height: 200px;
    overflow: hidden;
}

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

.exotic-card:hover .exotic-image img {
    transform: scale(1.05);
}

.exotic-card h3 {
    color: var(--accent-color);
    margin: 1rem;
    margin-bottom: 0.5rem;
}

.exotic-card p {
    margin: 1rem;
    color: #ccc;
}

.exotic-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem;
}

.exotic-features span {
    background: rgba(0, 255, 255, 0.2);
    color: var(--accent-color);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid var(--accent-color);
}

.exotic-price {
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin: 1rem;
    margin-top: 0.5rem;
}

/* Seasonal Events */
.seasonal-section {
    background: rgba(0, 20, 40, 0.8);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 15px;
}

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

.event-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--accent-color);
    text-align: center;
}

.event-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.event-date {
    color: var(--secondary-color);
    font-weight: bold;
    margin-top: 1rem;
}

/* Travel Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-card {
    background: rgba(0, 20, 40, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    text-align: center;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tip-card ul {
    text-align: left;
    color: #ccc;
}

.tip-card li {
    margin-bottom: 0.5rem;
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vehicle-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .destination-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .destination-item.reverse {
        direction: ltr;
    }
    
    .destination-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .safety-features {
        grid-template-columns: 1fr;
    }
    
    .vehicle-spotlight {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-image {
        height: 200px;
    }
    
    .vehicle-image {
        height: 180px;
    }
}



/* Feedback Page Styles */
.feedback-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.feedback-container h1 {
    color: #00ffff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ffff;
}

.feedback-container h2 {
    color: #00ccff;
    border-bottom: 2px solid #00ccff;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.feedback-container h3 {
    color: #0099ff;
    margin-top: 25px;
    margin-bottom: 15px;
}

.feedback-container p {
    color: #eee;
    margin-bottom: 15px;
}

.feedback-container ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.feedback-container ul li {
    margin-bottom: 8px;
    color: #ddd;
}

.feedback-container strong {
    color: #ffcc00;
}

.feedback-container .suggestion {
    color: #ccffcc;
    font-style: italic;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #ccffcc;
}

.feedback-container .back-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 12px 25px;
    background-color: #ff00ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.feedback-container .back-button:hover {
    background-color: #cc00cc;
}




/* Destination Page Image Fixes */
.destination-slideshow {
    margin-bottom: 3rem;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.slideshow-container img {
    width: 100%;
    height: 500px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures the image covers the area, cropping if necessary */
    display: block;
    border-radius: 10px;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

.slideshow-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.prev-btn, .next-btn {
    background: var(--aqua-blue);
    color: var(--deep-space);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--orbit-orange);
}

.slide-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: var(--metallic-silver);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--aqua-blue);
}

/* Destination Features Grid */
.destination-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.destination-features .feature-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--aqua-blue);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.destination-features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.destination-features .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--orbit-orange);
}

.destination-features .feature-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.destination-features .feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--metallic-silver);
}

/* Accommodation Options */
.accommodation-section .accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.accommodation-section .accommodation-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--orbit-orange);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.accommodation-section .accommodation-card.featured {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.accommodation-section .accommodation-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--neon-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.accommodation-section .accommodation-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.accommodation-section .accommodation-price {
    font-size: 1.5rem;
    color: var(--orbit-orange);
    font-weight: bold;
    margin-bottom: 1rem;
}

.accommodation-section .accommodation-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.accommodation-section .accommodation-card li {
    padding: 0.3rem 0;
    border-left: 2px solid var(--metallic-silver);
    padding-left: 1rem;
    margin: 0.5rem 0;
}

.accommodation-section .book-button {
    background: linear-gradient(45deg, var(--aqua-blue), var(--electric-blue));
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.accommodation-section .book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.accommodation-section .book-button.featured-button {
    background: linear-gradient(45deg, var(--neon-pink), var(--cosmic-purple));
}

.accommodation-section .book-button.featured-button:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

/* Activities Schedule */
.activities-section .schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    padding-left: 20px; /* For the timeline line */
}

.activities-section .schedule-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--aqua-blue);
}

.activities-section .schedule-item {
    position: relative;
    padding-left: 30px;
}

.activities-section .schedule-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: var(--orbit-orange);
    border-radius: 50%;
    border: 2px solid var(--deep-space);
    z-index: 1;
}

.activities-section .schedule-time {
    font-family: 'Orbitron', monospace;
    color: var(--neon-pink);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.activities-section .schedule-item h4 {
    color: var(--aqua-blue);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.activities-section .schedule-item p {
    font-size: 0.9rem;
    color: var(--metallic-silver);
}

/* Testimonial Section */
.testimonial-section .testimonial-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--orbit-orange);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
}

.testimonial-section .testimonial-card em {
    color: var(--metallic-silver);
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-section .testimonial-author {
    font-weight: bold;
    color: var(--aqua-blue);
    margin-top: 1rem;
}

.testimonial-section .testimonial-rating {
    color: gold;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Booking Packages */
.booking-packages .package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.booking-packages .package-option {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--aqua-blue);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.booking-packages .package-option.featured {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.booking-packages .package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--neon-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.booking-packages .package-option h4 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.booking-packages .package-price {
    font-size: 1.8rem;
    color: var(--aqua-blue);
    font-weight: bold;
    margin-bottom: 1rem;
}

.booking-packages .package-option ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.booking-packages .package-option li {
    padding: 0.3rem 0;
    border-left: 2px solid var(--metallic-silver);
    padding-left: 1rem;
    margin: 0.5rem 0;
}

.booking-packages .book-button {
    background: linear-gradient(45deg, var(--orbit-orange), var(--neon-pink));
    border: none;
    padding: 1rem 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.booking-packages .book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.booking-packages .book-button.featured-button {
    background: linear-gradient(45deg, var(--neon-pink), var(--cosmic-purple));
}

.booking-packages .book-button.featured-button:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

/* Feedback Page Styles */
.feedback-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.feedback-container h1 {
    color: #00ffff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ffff;
}

.feedback-container h2 {
    color: #00ccff;
    border-bottom: 2px solid #00ccff;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.feedback-container h3 {
    color: #0099ff;
    margin-top: 25px;
    margin-bottom: 15px;
}

.feedback-container p {
    color: #eee;
    margin-bottom: 15px;
}

.feedback-container ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.feedback-container ul li {
    margin-bottom: 8px;
    color: #ddd;
}

.feedback-container strong {
    color: #ffcc00;
}

.feedback-container .suggestion {
    color: #ccffcc;
    font-style: italic;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #ccffcc;
}

.feedback-container .back-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 12px 25px;
    background-color: #ff00ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.feedback-container .back-button:hover {
    background-color: #cc00cc;
}




/* Destination Page Image Fixes */
.destination-slideshow {
    margin-bottom: 3rem;
}

.slideshow-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.slideshow-container img {
    width: 100%;
    height: 500px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures the image covers the area, cropping if necessary */
    display: block;
    border-radius: 10px;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
}

.slideshow-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    gap: 1rem;
}

.prev-btn, .next-btn {
    background: var(--aqua-blue);
    color: var(--deep-space);
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--orbit-orange);
}

.slide-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: var(--metallic-silver);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background: var(--aqua-blue);
}

/* Destination Features Grid */
.destination-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.destination-features .feature-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--aqua-blue);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.destination-features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.destination-features .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--orbit-orange);
}

.destination-features .feature-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.destination-features .feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--metallic-silver);
}

/* Accommodation Options */
.accommodation-section .accommodation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.accommodation-section .accommodation-card {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--orbit-orange);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.accommodation-section .accommodation-card.featured {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.accommodation-section .accommodation-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--neon-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.accommodation-section .accommodation-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.accommodation-section .accommodation-price {
    font-size: 1.5rem;
    color: var(--orbit-orange);
    font-weight: bold;
    margin-bottom: 1rem;
}

.accommodation-section .accommodation-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.accommodation-section .accommodation-card li {
    padding: 0.3rem 0;
    border-left: 2px solid var(--metallic-silver);
    padding-left: 1rem;
    margin: 0.5rem 0;
}

.accommodation-section .book-button {
    background: linear-gradient(45deg, var(--aqua-blue), var(--electric-blue));
    border: none;
    padding: 0.8rem 1.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.accommodation-section .book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.4);
}

.accommodation-section .book-button.featured-button {
    background: linear-gradient(45deg, var(--neon-pink), var(--cosmic-purple));
}

.accommodation-section .book-button.featured-button:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

/* Activities Schedule */
.activities-section .schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
    padding-left: 20px; /* For the timeline line */
}

.activities-section .schedule-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--aqua-blue);
}

.activities-section .schedule-item {
    position: relative;
    padding-left: 30px;
}

.activities-section .schedule-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 18px;
    height: 18px;
    background-color: var(--orbit-orange);
    border-radius: 50%;
    border: 2px solid var(--deep-space);
    z-index: 1;
}

.activities-section .schedule-time {
    font-family: 'Orbitron', monospace;
    color: var(--neon-pink);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.activities-section .schedule-item h4 {
    color: var(--aqua-blue);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.activities-section .schedule-item p {
    font-size: 0.9rem;
    color: var(--metallic-silver);
}

/* Testimonial Section */
.testimonial-section .testimonial-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--orbit-orange);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-style: italic;
}

.testimonial-section .testimonial-card em {
    color: var(--metallic-silver);
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-section .testimonial-author {
    font-weight: bold;
    color: var(--aqua-blue);
    margin-top: 1rem;
}

.testimonial-section .testimonial-rating {
    color: gold;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Booking Packages */
.booking-packages .package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.booking-packages .package-option {
    background: rgba(10, 10, 26, 0.8);
    border: 1px solid var(--aqua-blue);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.booking-packages .package-option.featured {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.booking-packages .package-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--neon-pink);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.booking-packages .package-option h4 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.booking-packages .package-price {
    font-size: 1.8rem;
    color: var(--aqua-blue);
    font-weight: bold;
    margin-bottom: 1rem;
}

.booking-packages .package-option ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.booking-packages .package-option li {
    padding: 0.3rem 0;
    border-left: 2px solid var(--metallic-silver);
    padding-left: 1rem;
    margin: 0.5rem 0;
}

.booking-packages .book-button {
    background: linear-gradient(45deg, var(--orbit-orange), var(--neon-pink));
    border: none;
    padding: 1rem 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.booking-packages .book-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

.booking-packages .book-button.featured-button {
    background: linear-gradient(45deg, var(--neon-pink), var(--cosmic-purple));
}

.booking-packages .book-button.featured-button:hover {
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.4);
}

/* Feedback Page Styles */
.feedback-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.feedback-container h1 {
    color: #00ffff;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #00ffff;
}

.feedback-container h2 {
    color: #00ccff;
    border-bottom: 2px solid #00ccff;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.feedback-container h3 {
    color: #0099ff;
    margin-top: 25px;
    margin-bottom: 15px;
}

.feedback-container p {
    color: #eee;
    margin-bottom: 15px;
}

.feedback-container ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

.feedback-container ul li {
    margin-bottom: 8px;
    color: #ddd;
}

.feedback-container strong {
    color: #ffcc00;
}

.feedback-container .suggestion {
    color: #ccffcc;
    font-style: italic;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 3px solid #ccffcc;
}

.feedback-container .back-button {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    padding: 12px 25px;
    background-color: #ff00ff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.feedback-container .back-button:hover {
    background-color: #cc00cc;
}




.vehicle-image img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    border-radius: 8px; /* Slightly rounded corners for images */
    margin-bottom: 15px;
}

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

.vehicle-card {
    background: rgba(26, 26, 58, 0.5);
    border: 1px solid var(--aqua-blue);
    border-radius: 15px;
    overflow: hidden; /* Ensures content stays within rounded borders */
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

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

.vehicle-image {
    position: relative;
    width: 100%;
    height: 200px; /* Define a fixed height for the image container */
    overflow: hidden; /* Hide overflowing parts of the image */
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area, cropping if necessary */
    display: block;
}

.vehicle-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--orbit-orange);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
}

.vehicle-card.new-vehicle .vehicle-badge {
    background: var(--neon-pink);
}

.vehicle-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-content h3 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.vehicle-subtitle {
    color: var(--metallic-silver);
    font-size: 0.9em;
    margin-bottom: 1rem;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
}

.spec-label {
    font-weight: bold;
    color: var(--orbit-orange);
}

.spec-value {
    color: var(--metallic-silver);
}

.vehicle-features {
    margin-top: 1rem;
}

.feature-tag {
    display: inline-block;
    background: rgba(0, 255, 255, 0.1);
    color: var(--aqua-blue);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid var(--aqua-blue);
}

.vehicle-spotlight-section {
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--space-blue) 100%);
    padding: 5rem 0;
}

.vehicle-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.spotlight-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.spotlight-text h2 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--aqua-blue);
}

.spotlight-text h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.spotlight-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.spotlight-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.spotlight-feature h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 0.5rem;
}

.spotlight-feature p {
    font-size: 0.9em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.stat-item h3 {
    font-family: 'Orbitron', monospace;
    color: var(--orbit-orange);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--metallic-silver);
    font-size: 1.1rem;
}

.safety-section {
    background: var(--deep-space);
    padding: 5rem 0;
}

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

.safety-feature h4 {
    font-family: 'Orbitron', monospace;
    color: var(--aqua-blue);
    margin-bottom: 0.5rem;
}

.safety-feature p {
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .vehicle-spotlight {
        grid-template-columns: 1fr;
    }
    .spotlight-text h2 {
        font-size: 2rem;
    }
    .spotlight-features {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .safety-features {
        grid-template-columns: 1fr;
    }
}



/* Verbeteringen voor betere leesbaarheid */
.nav-menu a.active {
    color: var(--aqua-blue);
    background: rgba(0, 255, 255, 0.2);
    text-shadow: 0 0 10px var(--aqua-blue), 0 0 20px var(--aqua-blue), 0 0 30px var(--aqua-blue);
    border: 1px solid var(--aqua-blue);
    border-radius: 5px;
    padding: 0.5rem 1rem;
}

/* Verbeterde tekstachtergronden voor betere leesbaarheid */
.about-text,
.content-text,
.testimonial-text {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Call to Action sectie */
.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 1px solid var(--aqua-blue);
    backdrop-filter: blur(10px);
}

.cta-section h2 {
    color: var(--aqua-blue);
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--aqua-blue), 0 0 20px var(--aqua-blue), 0 0 30px var(--aqua-blue);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--metallic-silver);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--electric-blue), var(--cosmic-purple));
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 128, 255, 0.4);
    border-color: var(--aqua-blue);
}

.cta-btn.secondary {
    background: linear-gradient(45deg, var(--orbit-orange), var(--neon-pink));
}

.cta-btn.secondary:hover {
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, var(--orbit-orange), var(--neon-pink));
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

.scroll-top.show {
    display: flex;
}

/* Footer verbeteringen */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid var(--aqua-blue);
    backdrop-filter: blur(10px);
}

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

.footer-section h4 {
    color: var(--aqua-blue);
    font-family: 'Orbitron', monospace;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px var(--aqua-blue), 0 0 10px var(--aqua-blue), 0 0 15px var(--aqua-blue);
}

.footer-section p,
.footer-section li {
    color: var(--metallic-silver);
    margin-bottom: 0.5rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--metallic-silver);
}

/* Responsive verbeteringen */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
}



/* Spotlight Section Text Alignment */
.spotlight-section .section-title,
.spotlight-section p,
.spotlight-section .feature-grid {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.spotlight-section .feature-item {
    text-align: left; /* Behoud de tekstuitlijning binnen de feature items */
}




/* Image adjustments for detail pages */
.content-image {
    width: 100%;
    height: 250px;
    object-fit: contain; /* Ensures the whole image is visible */
    background-color: var(--deep-space); /* Background for empty space */
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}




/* Footer Text Alignment */
.footer-section {
    text-align: center;
}




/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(26, 26, 58, 0.8);
    border: 2px solid var(--aqua-blue);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.scroll-top-btn:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-5px);
}

.scroll-top-btn img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 5px var(--orbit-orange));
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn {
    opacity: 0;
    visibility: hidden;
}




/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: transparent;
    border: 1px solid var(--aqua-blue);
    color: var(--metallic-silver);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lang-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    color: var(--aqua-blue);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.lang-btn.active {
    background: var(--aqua-blue);
    color: var(--deep-space);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.flag-icon {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

/* Mobile responsive for language switcher */
@media (max-width: 768px) {
    .language-switcher {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .flag-icon {
        width: 20px;
    }
}


/* Featured Destination Section - Fix for mobile Pluto image */
.featured-destination-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--deep-space) 0%, var(--space-blue) 100%);
}

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

.featured-text {
    padding-right: 2rem;
}

.featured-text h2 {
    margin-bottom: 1rem;
}

.featured-text h3 {
    color: var(--aqua-blue);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px var(--aqua-blue), 0 0 20px var(--aqua-blue), 0 0 30px var(--aqua-blue);
}

.featured-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item h4 {
    color: var(--orbit-orange);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

.featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.featured-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.05);
}

/* Mobile responsive for featured destination */
@media (max-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-text {
        padding-right: 0;
        order: 2;
    }
    
    .featured-image {
        order: 1;
        max-height: 250px;
        overflow: hidden;
    }
    
    .featured-image img {
        max-height: 250px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .featured-text h3 {
        font-size: 1.5rem;
    }
    
    .featured-highlights {
        gap: 1rem;
    }
    
    .highlight-item h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .featured-destination-section {
        padding: 2rem 0;
    }
    
    .featured-image {
        max-height: 200px;
    }
    
    .featured-image img {
        max-height: 200px;
    }
    
    .featured-text h3 {
        font-size: 1.3rem;
    }
    
    .featured-text p {
        font-size: 1rem;
    }
}

