/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(10, 111, 72, 0.2); }
    50% { box-shadow: 0 0 40px rgba(10, 111, 72, 0.4); }
}

@keyframes border-dance {
    0%, 100% { border-color: rgba(10, 111, 72, 0.3); }
    50% { border-color: rgba(10, 111, 72, 0.6); }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes fade-in-left {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fade-in-right {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float 6s ease-in-out infinite 2s; }
.animate-float-slow { animation: float 8s ease-in-out infinite 1s; }
.animate-shimmer { 
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}
.animate-glow-pulse { animation: glow-pulse 3s ease-in-out infinite; }
.animate-border-dance { animation: border-dance 2s ease-in-out infinite; }
.animate-slide-up { animation: slide-up 0.8s ease-out forwards; }
.animate-scale-in { animation: scale-in 0.6s ease-out forwards; }
.animate-fade-in-left { animation: fade-in-left 0.8s ease-out forwards; }
.animate-fade-in-right { animation: fade-in-right 0.8s ease-out forwards; }

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }

/* Credential card 3D hover effect */
.credential-card {
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.credential-card:hover {
    transform: translateY(-8px) rotateX(5deg);
}

/* Value card special hover */
.value-card {
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 111, 72, 0.05), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

/* Glass morphism effect */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Button Styles */
.btn-primary {
    @apply px-6 py-3 text-white font-medium rounded-lg transition-all duration-300;
    background: linear-gradient(135deg, #0A1A43 0%, #0A6F48 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0A6F48 0%, #0A1A43 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 111, 72, 0.3);
}

.btn-outline {
    @apply px-6 py-3 font-medium rounded-lg transition-all duration-300;
    border: 2px solid #0A6F48;
    color: #0A6F48;
    transition: all 0.5s ease;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #0A6F48 0%, #0A1A43 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 111, 72, 0.3);
}

.btn-secondary {
    @apply px-6 py-3 font-medium rounded-lg transition-colors duration-300;
}

.card {
    @apply bg-white rounded-2xl shadow-sm hover:shadow-lg transition-shadow duration-300;
    /* max-width: 400px; */
    width: 100%;
}

/* Pricing Tabs Styles */
.pricing-tabs-container {
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.pricing-tabs-container::-webkit-scrollbar {
    height: 4px;
}

.pricing-tabs-container::-webkit-scrollbar-track {
    background: transparent;
}

.pricing-tabs-container::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 2px;
}

.pricing-tab-btn {
    @apply text-dark/60 bg-white border-2 border-silver/30 hover:border-accent/50 hover:text-accent hover:bg-accent/5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(229, 231, 235, 0.6);
}

.pricing-tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.pricing-tab-btn:hover::before {
    left: 100%;
}

.pricing-tab-btn:hover {
    color: #0A6F48;
    border-color: rgba(10, 111, 72, 0.4);
    background: rgba(10, 111, 72, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 111, 72, 0.12);
}

.pricing-tab-btn i {
    transition: transform 0.3s ease;
}

.pricing-tab-btn:hover i {
    transform: scale(1.1);
}

.pricing-tab-btn.active {
    background: linear-gradient(135deg, #0A1A43 0%, #0A6F48 100%);
    color: white;
    border-color: #0A6F48;
    box-shadow: 0 4px 16px rgba(10, 111, 72, 0.3);
    transform: translateY(-2px);
}

.pricing-tab-btn.active i {
    color: white;
    transform: scale(1.15);
}

.pricing-tab-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 111, 72, 0.4);
    background: linear-gradient(135deg, #0A6F48 0%, #0A1A43 100%);
}

.pricing-tab-content {
    animation: fadeIn 0.3s ease-in-out;
}

/* Input Modern Styles */
.input-modern {
    @apply w-full px-12 py-4 bg-white border border-silver/50 rounded-xl text-dark placeholder-dark/40 focus:outline-none focus:border-accent/50 focus:ring-2 focus:ring-accent/20 transition-all duration-300;
}

.input-modern:focus {
    box-shadow: none !important;
}

.input-modern option {
    @apply bg-white text-dark;
    padding: 1rem 1rem;
    min-height: 3rem;
    line-height: 1.5;
}

.input-modern option:checked,
.input-modern option:hover,
.input-modern option:focus {
    @apply bg-accent/10 text-accent font-medium;
}

.input-modern option:first-of-type {
    @apply text-dark/40;
}

select.input-modern {
    @apply cursor-pointer;
}

select.input-modern:not([value=""]) {
    @apply text-dark;
}

select.input-modern[value=""] {
    @apply text-dark/40;
}

.input-modern::placeholder {
    @apply text-dark/40;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .pricing-tabs-container {
        @apply py-4;
    }
    
    .pricing-tab-btn {
        @apply text-sm px-4 py-2.5;
        font-weight: 600;
    }
    
    .pricing-tab-btn span {
        @apply hidden sm:inline;
    }
    
    .pricing-tab-btn i {
        @apply text-lg;
    }
}

