/* SendBaba Landing Page Styles */

:root {
    --brand-orange: #F7601F;
    --brand-light: #F87036;
    --brand-lighter: #F9804D;
    --brand-peach: #F99063;
    --brand-soft: #9F84FD;
    --brand-yellow: #FFEE79;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-orange) 0%, var(--brand-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blob {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob 8s ease-in-out infinite;
    will-change: border-radius;
}

@keyframes blob {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.feature-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(247, 96, 31, 0.15);
}

.mobile-menu {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateX(0);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-light));
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    box-shadow: 0 20px 40px rgba(247, 96, 31, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #e5e7eb;
    color: #374151;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
}

.hero-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--brand-orange);
    box-shadow: 0 10px 30px rgba(247, 96, 31, 0.1);
}

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

/* Form styles */
.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(247, 96, 31, 0.1);
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}
