* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    background: #1a1a1a;
}

html {
    scroll-behavior: smooth;
}

/* Soft floating animations */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-30px, 30px) scale(1.05);
    }
    66% {
        transform: translate(20px, -20px) scale(0.95);
    }
}

.animate-float {
    animation: float 20s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float-delayed 25s ease-in-out infinite;
}

/* Hero text animation */
.hero-text {
    animation: fadeInUp 1.2s ease-out;
}

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

/* Scroll indicator */
@keyframes scroll-indicator {
    0% {
        opacity: 0;
        height: 0;
    }
    50% {
        opacity: 1;
        height: 64px;
    }
    100% {
        opacity: 0;
        height: 64px;
    }
}

.animate-scroll-indicator {
    animation: scroll-indicator 2s ease-in-out infinite;
}

/* Service cards - soft hover */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(57, 255, 20, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 1.5rem;
}

.service-card:hover::before {
    opacity: 1;
}

/* Transformation cards - elegant reveal */
.transformation-card {
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.transformation-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.transformation-card:hover img {
    transform: scale(1.08);
}

/* Lifestyle cards - gentle movement */
.lifestyle-card {
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lifestyle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.lifestyle-card:hover::before {
    opacity: 1;
}

.lifestyle-card img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Form styling - soft and elegant */
input, select, textarea {
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.08);
    border-color: rgba(57, 255, 20, 0.5);
}

/* Button hover effects - smooth and refined */
button, a {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shadow-neon {
    box-shadow: 0 10px 40px rgba(57, 255, 20, 0.3);
}

/* Fade in animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-in {
    animation: slideInLeft 1s ease-out;
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #39FF14, #7FFF7F);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #39FF14;
}

/* Mobile menu animation */
#mobileMenu {
    animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
}

/* Intersection Observer */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Success/Error messages */
.success-message {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2) 0%, rgba(57, 255, 20, 0.1) 100%);
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: #FFF8F0;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
    animation: slideInRight 0.6s ease-out;
    backdrop-filter: blur(10px);
}

.error-message {
    background: linear-gradient(135deg, rgba(255, 23, 68, 0.2) 0%, rgba(213, 0, 0, 0.1) 100%);
    border: 1px solid rgba(255, 23, 68, 0.3);
    color: #FFF8F0;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 1.5rem;
    animation: slideInRight 0.6s ease-out;
    backdrop-filter: blur(10px);
}

/* Package card special styling */
.scale-105 {
    box-shadow: 0 30px 80px rgba(57, 255, 20, 0.25);
}

/* Soft glow for neon elements */
.text-neon {
    text-shadow: 0 0 20px rgba(57, 255, 20, 0.3);
}

/* Loading state */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #39FF14;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Lightbox styles */
#lightbox {
    transition: opacity 0.3s ease;
}

#lightboxImage {
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Cursor pointer for clickable images */
.clickable-image {
    cursor: pointer !important;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.transformation-card img,
.lifestyle-card img,
#about img,
#packages img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.transformation-card img:hover,
.lifestyle-card img:hover,
#about img:hover,
#packages img:hover {
    transform: scale(1.02);
}

/* Hide scrollbar for mobile slider */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}