/* Custom Styles for GetFlo Landing Page */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

/* Navigation Styles */
#navbar {
    background-color: transparent;
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: rgba(17, 24, 39, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #2B5CE6;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #2B5CE6 0%, #3CE8C3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background-color: #2B5CE6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    box-shadow: 0 4px 16px -4px rgba(43, 92, 230, 0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #2451cc;
    transform: scale(1.05);
}

.btn-primary-sm {
    background-color: #2B5CE6;
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary-lg {
    background-color: #2B5CE6;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 8px 24px -6px rgba(43, 92, 230, 0.3);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-primary-lg:hover {
    background-color: #2451cc;
    transform: scale(1.05);
}

.btn-outline-lg {
    background-color: transparent;
    color: #2B5CE6;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    border: 2px solid #2B5CE6;
    transition: all 0.3s;
    cursor: pointer;
    width: 100%;
}

.btn-outline-lg:hover {
    background-color: rgba(43, 92, 230, 0.1);
}

.btn-dark {
    background-color: #1F2937;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 1px solid #374151;
    cursor: pointer;
}

.btn-dark:hover {
    background-color: #111827;
    transform: scale(1.05);
}

/* Cards */
.product-card {
    padding: 2rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    background-color: #FAFAFA;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.12);
    transition: all 0.3s;
}

.border-hover-blue:hover {
    border-color: rgba(43, 92, 230, 0.5);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.15);
}

.border-hover-cyan:hover {
    border-color: rgba(60, 232, 195, 0.5);
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.15);
}

.step-card {
    padding: 2rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    background-color: white;
    box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.step-card:hover {
    border-color: #D1D5DB;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.12);
}

.feature-card {
    padding: 2rem;
    background-color: #1F2937;
    border: 2px solid #374151;
    border-radius: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    border-color: #4B5563;
    transform: scale(1.05);
}

.beta-card {
    padding: 2rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    background-color: white;
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.15);
}

.contact-card {
    padding: 2rem;
    border: 2px solid #E5E7EB;
    border-radius: 0.75rem;
    background-color: white;
    box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.15);
}

/* Image Placeholders */
.image-placeholder {
    background-color: #F3F4F6;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 2px dashed #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}

/* Form Elements */
.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.625rem 0.875rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    background-color: #F9FAFB;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #2B5CE6;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(43, 92, 230, 0.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    max-width: 28rem;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlideIn 0.3s ease-out;
}

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

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

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease-out;
}

.toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-content {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #E5E7EB;
}

/* Responsive Design */
@media (max-width: 768px) {
    .btn-primary-lg,
    .btn-outline-lg {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
}

/* Trust bar marquee */
.trust-marquee {
    width: 100%;
    overflow: hidden;
}

.trust-marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
}

.trust-marquee-group {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
    padding-right: 1rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Floating badge animations */
.badge-float {
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-float-alt {
    animation: badgeFloat 3s ease-in-out 1.5s infinite;
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Grayscale Filter for Images in How It Works */
.grayscale {
    filter: grayscale(100%);
}

/* Utility Classes */
.w-full {
    width: 100%;
}
