@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Inter:wght@400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #111827, #1F2937);
    color: #F3F4F6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    color: #22D3EE;
}

.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

header {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    transition: transform 0.3s;
}

.glow {
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

nav a, nav button {
    transition: color 0.3s, transform 0.3s;
}

nav a:hover, nav button:hover {
    color: #22D3EE;
    transform: translateY(-2px);
}

button, .btn {
    background: linear-gradient(45deg, #1E3A8A, #22D3EE);
    color: #F3F4F6;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

button:hover, .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.8);
}

.tour-card {
    background: linear-gradient(135deg, #1E3A8A, #1F2937);
    border: 2px solid #22D3EE;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.tour-card:hover {
    transform: scale(1.05);
}

.tour-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.tour-card:hover .tour-card-inner {
    transform: rotateY(180deg);
}

.tour-card-front, .tour-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.tour-card-front {
    background: #1F2937;
}

.tour-card-back {
    background: linear-gradient(45deg, #1E3A8A, #22D3EE);
    color: #F3F4F6;
    transform: rotateY(180deg);
}

.service-tab {
    transition: background-color 0.3s;
}

.service-tab:hover {
    background-color: #22D3EE;
}

#tour-modal {
    transition: opacity 0.3s;
}

#tour-modal .iframe-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

#tour-modal iframe {
    border: 2px solid #22D3EE;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
    width: 100% !important;
    height: 100% !important;
}

#image-lightbox {
    transition: opacity 0.3s;
}

#image-lightbox img {
    border: 2px solid #22D3EE;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
}

#close-modal, #close-lightbox, #hamburger, #close-mobile-menu {
    transition: transform 0.3s, background-color 0.3s;
}

#close-modal:hover, #close-lightbox:hover, #hamburger:hover, #close-mobile-menu:hover {
    transform: scale(1.2);
    background-color: rgba(34, 211, 238, 0.2);
}

footer {
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(12px);
    transition: transform 0.3s;
}

footer a, footer button {
    transition: color 0.3s, transform 0.3s;
}

footer a:hover, footer button:hover {
    color: #22D3EE;
    transform: translateY(-2px);
}

footer input {
    transition: border-color 0.3s;
}

footer input:focus {
    border-color: #FBBF24;
    outline: none;
}

form input, form textarea, form select {
    background: #1F2937;
    border: 1px solid #22D3EE;
    color: #F3F4F6;
    border-radius: 0.5rem;
    padding: 0.5rem;
    transition: border-color 0.3s;
}

form input:focus, form textarea:focus, form select:focus {
    border-color: #FBBF24;
    outline: none;
}

.parallax {
    transition: transform 0.3s;
}

.main-content {
    padding-top: 96px; /* Matches header height on mobile */
}

@media (min-width: 768px) {
    .main-content {
        padding-top: 94px; /* Matches header height on desktop */
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

.animate-modal-open {
    animation: modalOpen 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes modalOpen {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .tour-card {
        transform: none !important;
    }
    .tour-card-inner {
        transform: none !important;
    }
    .tour-card-back {
        display: none;
    }
    #tour-modal .iframe-wrapper {
        width: 100%;
        height: 100%;
    }
    #tour-modal iframe {
        width: 100% !important;
        height: 100% !important;
    }
    #image-lightbox img {
        max-width: 95vw;
        max-height: 95vh;
    }
    #mobile-menu {
        transition: opacity 0.3s, transform 0.3s;
    }
    #mobile-menu.hidden {
        opacity: 0;
        transform: translateY(-100%);
        pointer-events: none;
    }
    #mobile-menu:not(.hidden) {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 640px) {
    header {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    #hamburger {
        margin-left: auto;
    }
}

/* Existing styles */
.btn {
    @apply text-white font-semibold rounded-lg transition-all duration-300;
}

.main-content {
    @apply pt-14 md:pt-16;
}

.glow {
    @apply shadow-lg shadow-cyan-500/50;
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

/* Ensure area container visibility */
.area-container {
    display: block !important;
}

/* Value-added option styling */
.value-added-option {
    @apply flex items-center gap-2 py-1;
}

/* Load More button styling */
.load-more {
    @apply text-white font-semibold rounded-lg transition-all duration-300;
}