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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

body.loading {
    overflow: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease;
    opacity: 1;
}

.loading-screen.flash {
    animation: godlyFlash 1.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.alien-loader {
    text-align: center;
    background: transparent;
    animation: heavenRise 3s ease-in-out infinite;
}

.alien-head-loading {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    animation: godlyGlow 2s ease-in-out infinite alternate;
}

.loading-alien-image {
    width: 180px;
    height: 180px;
    background: transparent;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    margin: 0 auto;
    vertical-align: top;
    filter: none;
    animation: alienPulse 1.5s ease-in-out infinite alternate;
}

/* Godly Loading Animations */
@keyframes godlyFlash {
    0% { 
        background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 70%);
        transform: scale(1);
    }
    25% {
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, rgba(143, 188, 74, 0.05) 50%, #000 90%);
        transform: scale(1.002);
    }
    50% {
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, rgba(143, 188, 74, 0.2) 40%, rgba(255, 215, 0, 0.1) 70%, #000 100%);
        transform: scale(1.005);
    }
    75% {
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, rgba(143, 188, 74, 0.1) 50%, #000 90%);
        transform: scale(1.002);
    }
    100% { 
        background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 70%);
        transform: scale(1);
    }
}

@keyframes heavenRise {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        filter: blur(0px);
    }
    25% {
        transform: translateY(-2px) scale(1.01);
        filter: blur(0.2px);
    }
    50% { 
        transform: translateY(-5px) scale(1.02);
        filter: blur(0.3px);
    }
    75% {
        transform: translateY(-2px) scale(1.01);
        filter: blur(0.2px);
    }
}

@keyframes godlyGlow {
    0% { 
        filter: none;
    }
    100% { 
        filter: none;
    }
}

@keyframes alienPulse {
    0% { 
        transform: scale(1) rotate(0deg);
        filter: none;
    }
    100% { 
        transform: scale(1.05) rotate(0.5deg);
        filter: none;
    }
}

.loading-text {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 900;
    color: #8FBC4A;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(143, 188, 74, 0.8),
                 0 0 40px rgba(143, 188, 74, 0.4);
    animation: textRise 2.5s ease-in-out infinite;
}

@keyframes textRise {
    0%, 100% { 
        transform: translateY(0px);
        opacity: 0.9;
    }
    50% { 
        transform: translateY(-8px);
        opacity: 1;
        text-shadow: 0 0 30px rgba(143, 188, 74, 1),
                     0 0 60px rgba(143, 188, 74, 0.6);
    }
}

/* Fade out animation for logo and text */
@keyframes fadeOutUp {
    0% { 
        opacity: 1;
        transform: translateY(0px) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-20px) scale(0.95);
    }
    100% { 
        opacity: 0;
        transform: translateY(-40px) scale(0.9);
        pointer-events: none;
    }
}

/* Heaven Shake Effect for Page Load */
@keyframes heavenShake {
    0% { 
        transform: translateY(0px) translateX(0px) scale(1);
        filter: brightness(1);
    }
    15% { 
        transform: translateY(-0.3px) translateX(0.2px) scale(1.0003);
        filter: brightness(1.03);
    }
    30% { 
        transform: translateY(0.2px) translateX(-0.3px) scale(1.0005);
        filter: brightness(1.05);
    }
    45% { 
        transform: translateY(-0.2px) translateX(0.3px) scale(1.0003);
        filter: brightness(1.04);
    }
    60% { 
        transform: translateY(0.3px) translateX(-0.2px) scale(1.0005);
        filter: brightness(1.06);
    }
    75% { 
        transform: translateY(-0.1px) translateX(0.1px) scale(1.0002);
        filter: brightness(1.03);
    }
    90% { 
        transform: translateY(0.1px) translateX(-0.1px) scale(1.0001);
        filter: brightness(1.01);
    }
    100% { 
        transform: translateY(0px) translateX(0px) scale(1);
        filter: brightness(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.3; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(143, 188, 74, 0.2);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    padding: 0.5rem 0;
}

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

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

.nav-alien-image {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(143, 188, 74, 0.3));
    flex-shrink: 0;
}

.nav-title {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: #8FBC4A;
    font-weight: 400;
}

@keyframes alienGlow {
    0%, 100% { box-shadow: 0 0 2px rgba(143, 188, 74, 0.2); }
    50% { box-shadow: 0 0 5px rgba(143, 188, 74, 0.3), 0 0 10px rgba(143, 188, 74, 0.2); }
}

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

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #8FBC4A;
    text-shadow: 0 0 8px rgba(143, 188, 74, 0.6);
    background: rgba(143, 188, 74, 0.1);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8FBC4A, #FFA500);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #8FBC4A;
    transition: 0.3s;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 70%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(143, 188, 74, 0.4), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 165, 0, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(143, 188, 74, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 150px;
    animation: twinkle 4s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.2; }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Shooting Stars - Random and Realistic */
.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.6), 0 0 12px rgba(143, 188, 74, 0.3);
}

.floating-particles::before {
    left: 10%;
    top: 20%;
    animation: shootingStar1 12s infinite linear;
}

.floating-particles::after {
    left: 70%;
    top: 10%;
    animation: shootingStar2 15s infinite linear;
}

/* Add more shooting stars with pseudo elements on the container */
.hero-background::before,
.hero-background::after {
    content: '';
    position: absolute;
    width: 1.5px;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.7), 0 0 8px rgba(143, 188, 74, 0.2);
}

.hero-background::before {
    left: 30%;
    top: 30%;
    animation: shootingStar3 18s infinite linear;
}

.hero-background::after {
    left: 85%;
    top: 25%;
    animation: shootingStar4 21s infinite linear;
}



/* UFO Animation - Epic Real UFO Image */
.ufo {
    position: absolute;
    left: -120px;
    top: 12%;
    animation: ufoFlyby 22.5s infinite linear;
    animation-delay: 3s;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}

.ufo-image {
    width: 100px;
    height: auto;
    animation: ufoHover 3s ease-in-out infinite;
}

/* Tractor beam removed per user request */

@keyframes ufoHover {
    0%, 100% { 
        transform: translateY(0px) rotate(-2deg);
    }
    50% { 
        transform: translateY(-8px) rotate(2deg);
    }
}

/* Beam animation removed per user request */

/* Realistic shooting star animations - slower and with trails */
@keyframes shootingStar1 {
    0%, 85% {
        transform: translateX(-100px) translateY(-50px) rotate(45deg);
        opacity: 0;
    }
    87% {
        opacity: 1;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(143, 188, 74, 0.4), -20px 20px 10px rgba(255, 255, 255, 0.2);
    }
    92% {
        transform: translateX(150px) translateY(100px) rotate(45deg);
        opacity: 1;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(143, 188, 74, 0.5), -40px 40px 20px rgba(255, 255, 255, 0.1);
    }
    95% {
        opacity: 0;
        transform: translateX(200px) translateY(150px) rotate(45deg);
    }
    100% {
        transform: translateX(250px) translateY(200px) rotate(45deg);
        opacity: 0;
    }
}

@keyframes shootingStar2 {
    0%, 60% {
        transform: translateX(-80px) translateY(-80px) rotate(-45deg);
        opacity: 0;
    }
    63% {
        opacity: 1;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(143, 188, 74, 0.4), 20px 20px 10px rgba(255, 255, 255, 0.2);
    }
    68% {
        transform: translateX(120px) translateY(120px) rotate(-45deg);
        opacity: 1;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(143, 188, 74, 0.5), 30px 30px 15px rgba(255, 255, 255, 0.1);
    }
    72% {
        opacity: 0;
        transform: translateX(180px) translateY(180px) rotate(-45deg);
    }
    100% {
        transform: translateX(220px) translateY(220px) rotate(-45deg);
        opacity: 0;
    }
}

@keyframes shootingStar3 {
    0%, 40% {
        transform: translateX(-120px) translateY(-30px) rotate(30deg);
        opacity: 0;
    }
    43% {
        opacity: 1;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.7), 0 0 10px rgba(143, 188, 74, 0.3), -25px 15px 8px rgba(255, 255, 255, 0.15);
    }
    49% {
        transform: translateX(180px) translateY(90px) rotate(30deg);
        opacity: 1;
        box-shadow: 0 0 7px rgba(255, 255, 255, 0.8), 0 0 14px rgba(143, 188, 74, 0.4), -35px 20px 12px rgba(255, 255, 255, 0.1);
    }
    53% {
        opacity: 0;
        transform: translateX(240px) translateY(120px) rotate(30deg);
    }
    100% {
        transform: translateX(300px) translateY(150px) rotate(30deg);
        opacity: 0;
    }
}

@keyframes shootingStar4 {
    0%, 75% {
        transform: translateX(-150px) translateY(-100px) rotate(60deg);
        opacity: 0;
    }
    78% {
        opacity: 1;
        box-shadow: 0 0 6px rgba(255, 255, 255, 0.8), 0 0 12px rgba(143, 188, 74, 0.4), -30px 50px 15px rgba(255, 255, 255, 0.2);
    }
    84% {
        transform: translateX(100px) translateY(170px) rotate(60deg);
        opacity: 1;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(143, 188, 74, 0.5), -40px 70px 20px rgba(255, 255, 255, 0.1);
    }
    88% {
        opacity: 0;
        transform: translateX(150px) translateY(250px) rotate(60deg);
    }
    100% {
        transform: translateX(200px) translateY(300px) rotate(60deg);
        opacity: 0;
    }
}

/* UFO Flying Animation - No Glow */
@keyframes ufoFlyby {
    0% {
        transform: translateX(-150px) translateY(0px) scale(0.8);
        opacity: 0;
    }
    3% {
        opacity: 1;
        transform: translateX(-100px) translateY(-5px) scale(0.9);
    }
    10% {
        transform: translateX(50px) translateY(-15px) scale(1.1);
    }
    20% {
        transform: translateX(250px) translateY(-20px) scale(1.2);
    }
    27% {
        transform: translateX(400px) translateY(-18px) scale(1.15);
        opacity: 0;
    }
    35% {
        transform: translateX(600px) translateY(-15px) scale(1.1);
        opacity: 0;
    }
    100% {
        transform: translateX(1400px) translateY(20px) scale(0.4);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-logo {
    margin-bottom: 2rem;
}

.main-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.main-logo-image {
    width: 400px;
    height: auto;
    max-width: 90vw;
    filter: drop-shadow(0 0 20px rgba(143, 188, 74, 0.3));
    animation: logoHover 3s ease-in-out infinite;
}

@keyframes logoHover {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.hero-text {
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-subtitle {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    font-weight: 400;
    color: #8FBC4A;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(143, 188, 74, 0.4), 0 0 20px rgba(143, 188, 74, 0.2);
    line-height: 1.2;
    text-align: center;
}

.hero-description {
    font-size: 1.3rem;
    color: #CC8400;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.9;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #8FBC4A, #7AA83A);
    color: #000;
    border: 2px solid #8FBC4A;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #7AA83A, #6A9B2A);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(143, 188, 74, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #FFA500;
    border: 2px solid #FFA500;
}

.cta-button.secondary:hover {
    background: #FFA500;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.3);
}

.cta-button.green-secondary {
    background: transparent;
    color: #8FBC4A;
    border: 2px solid #8FBC4A;
}

.cta-button.green-secondary:hover {
    background: #8FBC4A;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(143, 188, 74, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    color: #8FBC4A;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

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

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Creepster', cursive;
    font-size: 3rem;
    font-weight: 400;
    color: #8FBC4A;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #8FBC4A, #FFA500);
    margin: 0 auto;
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(143, 188, 74, 0.3);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #8FBC4A, #FFA500);
}

.about-card h3 {
    font-family: 'Creepster', cursive;
    font-size: 2rem;
    color: #8FBC4A;
    margin-bottom: 1.5rem;
}

.about-card p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(143, 188, 74, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(143, 188, 74, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(143, 188, 74, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #8FBC4A;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

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

.service-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(143, 188, 74, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8FBC4A, #FFA500);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(143, 188, 74, 0.2);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
    color: #8FBC4A;
}

.service-card h3 {
    font-family: 'Creepster', cursive;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features span {
    color: #8FBC4A;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Book Section */
.book-section {
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 70%);
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-info h3 {
    font-family: 'Creepster', cursive;
    font-size: 2.5rem;
    color: #8FBC4A;
    margin-bottom: 1.5rem;
}

.booking-info p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.booking-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.booking-feature i {
    font-size: 2rem;
    color: #8FBC4A;
    flex-shrink: 0;
}

.booking-feature h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.booking-feature p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

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

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

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

.review-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(143, 188, 74, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(143, 188, 74, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info h4 {
    color: #8FBC4A;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: #999;
    font-size: 0.8rem;
}

.stars {
    color: #FFA500;
    font-size: 1rem;
    margin-left: 0.5rem;
    text-shadow: 0 0 3px rgba(255, 165, 0, 0.5);
    transition: all 0.3s ease;
}

.review-card:hover .stars {
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}

.review-content p {
    color: #ccc;
    line-height: 1.6;
    font-style: italic;
}

.review-content p::before {
    content: '"';
    color: #8FBC4A;
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

.review-content p::after {
    content: '"';
    color: #8FBC4A;
    font-size: 1.5rem;
    margin-left: 0.25rem;
}

/* Contact Section */
.contact-section {
    background: radial-gradient(ellipse at center, #1a1a1a 0%, #000 70%);
}

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

.contact-card {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(143, 188, 74, 0.3);
    height: fit-content;
}

.contact-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #8FBC4A;
    margin-bottom: 1.5rem;
}

.contact-card p {
    color: #ccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #8FBC4A;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #ccc;
    margin: 0;
}

.contact-item a {
    color: #8FBC4A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #FFA500;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(143, 188, 74, 0.3);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(1) contrast(1.2);
}

/* Footer */
.footer {
    background: #000;
    padding: 2rem 0;
    border-top: 1px solid rgba(143, 188, 74, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(143, 188, 74, 0.2));
}

.footer-text {
    color: #999;
    font-size: 0.9rem;
}

.footer-social a {
    color: #8FBC4A;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #FFA500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-logo-image {
        width: 350px;
        max-width: 88vw;
    }
    
    .hero-subtitle {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .nav-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
        gap: 1rem;
    }
    
    .hamburger {
        display: flex;
        flex-shrink: 0;
        z-index: 1001;
    }
    
    .nav-logo {
        gap: 8px;
        flex: 1;
        min-width: 0;
        max-width: calc(100% - 60px);
    }
    
    .nav-alien-image {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    
    .nav-title {
        font-size: 1.1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transition: top 0.3s ease;
        border-top: 1px solid rgba(143, 188, 74, 0.2);
    }
    
    .nav-menu.active {
        top: 64px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .studio-name {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    

    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-logo-image {
        width: 280px;
        max-width: 85vw;
    }
    
    .hero-subtitle {
        font-size: 2rem;
        letter-spacing: 0.8px;
    }
    

    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .about-card,
    .contact-card {
        padding: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-container {
        padding: 0 0.8rem;
    }
    
    .nav-alien-image {
        width: 28px;
        height: 28px;
    }
    
    .nav-title {
        font-size: 0.9rem;
    }
    
    .nav-menu.active {
        top: 56px;
    }
    
    .studio-name {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .main-logo-image {
        width: 240px;
        max-width: 85vw;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .stars {
        gap: 4px;
    }
    
    .stars .star {
        font-size: 1.3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-features {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .navbar {
        background: #000;
        border-bottom: 2px solid #8FBC4A;
    }
    
    .service-card,
    .review-card,
    .about-card,
    .contact-card {
        border: 2px solid #8FBC4A;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.cta-button:focus,
.contact-item a:focus {
    outline: 2px solid #8FBC4A;
    outline-offset: 2px;
}
