/* css/common.css - Common styles for Quick Taka website */

:root {
    --primary: #0A2540;
    --primary-light: #1F4A6E;
    --text-dark: #1E293B;
    --text-light: #64748B;
}

* {
    font-family: 'Inter', sans-serif;
}

body {
    background: #FFFFFF;
    scroll-behavior: smooth;
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 30px -12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary);
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: scale(0.98);
}

.btn-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.lang-active {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.container-custom {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 640px) {
    .container-custom {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.hero-gradient {
    background: linear-gradient(135deg, #F0F4F8 0%, #FFFFFF 50%, #F8FAFE 100%);
}

.step-circle {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

@media (max-width: 768px) {
    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}