/* Additional custom styles for the landing page */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Enhanced button hover effects */
.btn-primary {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* Custom gradient backgrounds */
.eco-gradient {
    background: linear-gradient(135deg, #10B981 0%, #059669 50%, #047857 100%);
}

.eco-gradient-light {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 50%, #6EE7B7 100%);
}

/* Enhanced card hover effects */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

::-webkit-scrollbar-thumb {
    background: #10B981;
    border-radius: 4px;
}

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

/* Loading states for forms */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-gradient {
        background: linear-gradient(135deg, #10B981 0%, #059669 100%);
        padding: 3rem 1rem;
    }
    
    h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
}

/* Print styles */
@media print {
    .btn-primary,
    .calendly-inline-widget,
    [data-tf-widget] {
        display: none !important;
    }
} 