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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
}

/* Geometric Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(20px) rotate(-5deg); }
}

@keyframes pulse-slow {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.1); opacity: 0.25; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes spin-slow-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

/* Hero Geometric Shapes */
.geo-shape {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: 50%;
    top: 10%;
    right: -5%;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: white;
    border-radius: 50%;
    bottom: 25%;
    left: 5%;
    animation: floatReverse 6s ease-in-out infinite;
}

.circle-3 {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    top: 30%;
    left: 15%;
    animation: float 7s ease-in-out infinite 1s;
}

.circle-4 {
    width: 200px;
    height: 200px;
    background: white;
    border-radius: 50%;
    bottom: 15%;
    right: 15%;
    animation: pulse-slow 5s ease-in-out infinite;
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid white;
    top: 20%;
    left: 8%;
    animation: spin-slow 20s linear infinite;
    opacity: 0.08;
}

.square-1 {
    width: 100px;
    height: 100px;
    background: white;
    top: 60%;
    right: 8%;
    animation: spin-slow-reverse 25s linear infinite;
    opacity: 0.06;
}

.diamond-1 {
    width: 70px;
    height: 70px;
    background: white;
    top: 45%;
    right: 25%;
    transform: rotate(45deg);
    animation: floatReverse 9s ease-in-out infinite;
    opacity: 0.1;
}

/* Hero Content Animation */
.hero-content {
    animation: slideUp 1s ease-out 0.3s forwards;
}

.hero-scroll-indicator {
    animation: slideUp 1s ease-out 0.8s forwards;
}

/* Service Cards */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Wellness Cards */
.wellness-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.wellness-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Section */
.about-image {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Section */
.contact-info {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-info.visible {
    opacity: 1;
    transform: translateX(0);
}

.contact-form {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.contact-form.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background: rgba(254, 253, 248, 0.95) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-scrolled .logo-text {
    color: #047857 !important;
}

/* Mobile Menu */
.mobile-link {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Testimonial Cards */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Button Hover Effects */
a, button {
    transition: all 0.3s ease;
}

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

::-webkit-scrollbar-track {
    background: #fefdf8;
}

::-webkit-scrollbar-thumb {
    background: #059669;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}

/* Focus Styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .geo-shape {
        opacity: 0.08;
    }
    
    .circle-1 {
        width: 200px;
        height: 200px;
    }
    
    .circle-2 {
        width: 100px;
        height: 100px;
    }
    
    .circle-3, .circle-4, .triangle-1, .square-1, .diamond-1 {
        display: none;
    }
}
