/* public/css/custom-front.css */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    padding-top: 60px;
}
.custom-height {
    height: 90vh;
}
.feature-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.6s forwards;
}
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}
.animate-bounce {
    animation: bounce 2s infinite;
}
.navbar-nav .btn {
    margin-left: 0.5rem;
}
.navbar-nav .nav-link {
    position: relative;
    transition: all 0.3s ease;
}
.navbar-nav .link-text {
    position: relative;
    display: inline-block;
}
.navbar-nav .link-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #000;
    transition: width 0.3s ease;
}
.navbar-nav .link-text:hover::after {
    width: 100%;
}
.navbar-nav .btn-login {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.navbar-nav .btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.navbar-nav .btn-login:hover::before {
    left: 100%;
}
.navbar-nav .btn-login:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.navbar-nav .btn-login .fa-chevron-right {
    transition: transform 0.3s ease;
}
.navbar-nav .btn-login:hover .fa-chevron-right {
    transform: translateX(3px);
}
footer {
    background-color: #111827;
    color: #fff;
    padding: 4rem 0 2rem;
}
footer a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: #fff;
}
.social-links a {
    font-size: 1.5rem;
}
.hero-text-container {
    position: relative;
    max-width: none;
}
.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}
#dynamic-text {
    min-height: 120px;
    white-space: nowrap;
    overflow: visible;
    width: 100%;
}
.cta-section {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    padding: 6rem 2rem;
    margin: 4rem auto;
    text-align: center;
    max-width: 1400px;
    width: 95%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}
@media (max-width: 768px) {
    .cta-section {
        padding: 4rem 1.5rem;
        width: 98%;
        border-radius: 1.5rem;
    }
    .cta-section h2 {
        font-size: 2rem;
    }
    .cta-section p {
        font-size: 1.1rem;
    }
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(13, 110, 253, 0.4), rgba(255, 192, 203, 0.4));
    border-radius: 50%;
    z-index: -1;
    animation: morph 10s ease-in-out infinite;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, rgba(255, 192, 203, 0.4), rgba(13, 110, 253, 0.4));
    border-radius: 50%;
    z-index: -1;
    animation: morph 10s ease-in-out infinite reverse;
}
@keyframes morph {
    0%, 100% { transform: scale(1) rotate(0deg); border-radius: 50%; }
    33% { transform: scale(1.1) rotate(120deg); border-radius: 60%; }
    66% { transform: scale(0.9) rotate(240deg); border-radius: 30%; }
}
.cta-section h2 {
    font-weight: 800;
    font-size: 2.5rem;
    color: #0d3b66;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.cta-section p {
    font-size: 1.4rem;
    color: #1d1d1d;
}
.cta-section .btn {
    padding: 1rem 3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 1.1rem;
}
.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.testimonial-card {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s forwards;
}
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.pricing-card {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s forwards;
}
@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.how-it-works-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.how-it-works-card.animate {
    opacity: 1;
    transform: translateY(0);
}
.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d3b66, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: transform 0.3s ease;
}
.how-it-works-card:hover .step-icon {
    transform: scale(1.1);
}