/**
 * Landing Page Modernisée - BRIKER
 * Couleur principale: #0296b1 avec noir et blanc
 */

/* === Variables globales === */
:root {
    /* Couleur principale */
    --base-1: #0296b1; /* Couleur prédominante */
    --base-rgb: 2, 150, 177;
    
    /* Couleurs complémentaires */
    --base-2: #016c83; /* Version plus foncée pour les hovers */
    --base-rgb-2: 1, 108, 131;
    --base-light: rgba(2, 150, 177, 0.1); /* Fond léger pour certaines sections */
    
    /* Couleurs de texte */
    --title-clr: #000000; /* Noir pour les titres */
    --title-rgb: 0, 0, 0;
    --body-clr: #212529; /* Gris foncé pour le texte */
    
    /* Couleurs de fond */
    --header-bg: #FFFFFF;
    --body-bg: #FFFFFF;
    --section-bg: #FFFFFF;
    --section-alt-bg: #F8F9FA; /* Fond alternatif légèrement grisé */
    
    /* Autres couleurs */
    --white: #FFFFFF;
    --white-clr: #FFFFFF;
    --border-clr: #DEE2E6; /* Bordures subtiles */
    --border-light: #F1F1F1;
    --success: #28a745;
    --danger: #dc3545;
    
    /* Typographie */
    --heading-fonts: "Montserrat", sans-serif;
    --body-fonts: "Open Sans", sans-serif;
}

/* === Styles de base === */
body {
    font-family: var(--body-fonts);
    color: var(--body-clr);
    background-color: var(--body-bg);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; /* Amélioration du rendu des polices */
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-fonts);
    color: var(--title-clr);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.75em;
    line-height: 1.3;
}

h1 { 
    font-size: 2.8rem; 
    font-weight: 900; 
    letter-spacing: -0.5px; 
    margin-bottom: 0.5em; 
}

h2 { 
    font-size: 2.2rem; 
    letter-spacing: -0.25px; 
    margin-bottom: 0.6em; 
}

h3 { 
    font-size: 1.8rem; 
    margin-bottom: 0.65em; 
}

h4 { 
    font-size: 1.5rem; 
}

h5 { 
    font-size: 1.25rem; 
}

h6 { 
    font-size: 1rem; 
}

p {
    margin-bottom: 1.25rem;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: var(--base-1);
    text-decoration: none;
    transition: color 0.2s ease-in-out, text-decoration-color 0.2s ease-in-out;
}

a:hover {
    color: var(--base-2);
    text-decoration: underline;
    text-decoration-color: var(--base-2);
}

/* === Styles des boutons === */
.cmn--btn {
    font-family: var(--heading-fonts);
    background-color: var(--base-1);
    color: var(--white-clr) !important;
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid var(--base-1);
    text-transform: none;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 4px rgba(var(--base-rgb), 0.1), 0 4px 8px rgba(var(--base-rgb), 0.1);
    transition: all 0.2s ease-in-out;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    line-height: 1.5;
    text-decoration: none !important;
}

.cmn--btn:hover,
.cmn--btn:focus {
    background-color: var(--base-2);
    border-color: var(--base-2);
    color: var(--white-clr) !important;
    text-decoration: none !important;
    box-shadow: 0 4px 8px rgba(var(--base-rgb), 0.15), 0 8px 16px rgba(var(--base-rgb), 0.15);
    transform: translateY(-2px);
}

.cmn--btn:active {
    background-color: #015e73; /* Encore plus foncé */
    border-color: #015e73;
    box-shadow: 0 2px 4px rgba(var(--base-rgb), 0.1);
    transform: translateY(0px);
}

.cmn--btn.btn--secondary {
    background-color: transparent !important;
    color: var(--base-1) !important;
    border: 1px solid var(--base-1);
    box-shadow: none;
}

.cmn--btn.btn--secondary:hover,
.cmn--btn.btn--secondary:focus {
    background-color: rgba(var(--base-rgb), 0.05) !important;
    color: var(--base-1) !important;
    border-color: var(--base-1);
    box-shadow: none;
    transform: translateY(-2px);
}

.cmn--btn.btn--secondary:active {
    background-color: rgba(var(--base-rgb), 0.1) !important;
    transform: translateY(0px);
}

/* === Header et Navigation === */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white-clr);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

header.active {
    animation: fadeInDown 0.5s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header.active::after {
    display: none;
}

.navbar-bottom {
    position: relative;
    z-index: 1;
}

.navbar-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

.navbar-bottom-wrapper .logo {
    height: 50px;
    max-width: 220px;
    transition: transform 0.3s ease;
}

.navbar-bottom-wrapper .logo:hover {
    transform: scale(1.02);
}

.navbar-bottom-wrapper .logo img {
    object-fit: contain;
    width: 100%;
    height: 100%;
    object-position: left;
}

.navbar-bottom-wrapper .menu {
    display: flex;
    margin-inline-start: auto;
    transition: all ease 0.3s;
    transform-origin: top;
}

.navbar-bottom-wrapper .menu li {
    padding: 2.5px 6px;
}

.navbar-bottom-wrapper .menu li a {
    padding: 10px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--body-clr);
    text-transform: capitalize;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-bottom-wrapper .menu li a span {
    position: relative;
}

.navbar-bottom-wrapper .menu li a span::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    bottom: -6px;
    height: 2px;
    width: 0;
    background: var(--base-1);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.navbar-bottom-wrapper .menu li a:hover,
.navbar-bottom-wrapper .menu li a.active {
    color: var(--base-1);
}

.navbar-bottom-wrapper .menu li a:hover span::before,
.navbar-bottom-wrapper .menu li a.active span::before {
    width: 100%;
}

.navbar-bottom-wrapper .menu li a.active {
    font-weight: 700;
}

.nav-toggle {
    display: none;
    position: relative;
    cursor: pointer;
    width: 25px;
    height: 20px;
}

.nav-toggle span {
    position: absolute;
    display: inline-block;
    height: 2px;
    width: 100%;
    transition: all ease 0.3s;
    background: var(--title-clr);
    inset-inline-start: 0;
}

.nav-toggle span:first-child {
    top: 0;
}

.nav-toggle span:nth-child(2) {
    top: 52%;
    transform: translateY(-65%);
}

.nav-toggle span:last-child {
    bottom: 0;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(3px, 10px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(3px, -10px);
}

/* === Section Banner === */
.banner-section {
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(var(--base-rgb), 0.05) 0%, rgba(var(--base-rgb), 0) 100%);
    overflow: hidden;
    position: relative;
}

.banner-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 20px 15px 40px;
}

.banner-content .title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--title-clr);
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content img {
    max-height: 70px;
    object-fit: contain;
    margin: 15px auto 25px;
    display: block;
    transition: transform 0.5s ease;
}

.banner-content img:hover {
    transform: scale(1.05);
}

.banner-content .text {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--body-clr);
}

.banner-svg-img {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 1;
    transition: transform 0.7s ease;
}

.banner-svg-img:hover {
    transform: translateY(-5px);
}

.banner-svg-img svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Élément décoratif en arrière-plan */
.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 15% 50%, rgba(var(--base-rgb), 0.08) 0%, transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(var(--base-rgb), 0.08) 0%, transparent 25%);
    z-index: 0;
    opacity: 0.6;
}

/* === Section Ecommerce Venture === */
.ecommerce-venture-section {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(var(--base-rgb), 0.04) 0%, rgba(var(--white-rgb), 1) 50%, rgba(var(--base-rgb), 0.04) 100%);
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .title {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: var(--title-clr);
    position: relative;
    display: inline-block;
}

.section-header .title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--base-1);
    margin: 15px auto 0;
    border-radius: 2px;
}

.nav--tabs-wrapper {
    margin: 0 auto 50px;
    max-width: 700px;
    overflow: hidden;
    position: relative;
}

.nav--tabs {
    display: flex;
    border: none;
    background: rgba(var(--base-rgb), 0.03);
    border-radius: 10px;
    padding: 5px;
}

.nav--tabs .item {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    font-family: var(--heading-fonts);
    font-size: 15px;
    font-weight: 600;
    color: var(--body-clr);
}

.nav--tabs .owl-item.synced .item {
    background: var(--white);
    color: var(--base-1);
    box-shadow: 0 3px 10px rgba(var(--base-rgb), 0.1);
    transform: translateY(-2px);
}

.nav--tabs .item .txt {
    margin-top: 8px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav--tabs .owl-item:not(.synced) .item img {
    filter: grayscale(80%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav--tabs .owl-item.synced .item img {
    filter: none;
    opacity: 1;
}

.venture-content-box {
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(var(--base-rgb), 0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venture-content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(var(--base-rgb), 0.1);
}

.venture-content-box .subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--base-1);
    margin-bottom: 15px;
}

.venture-img {
    overflow: hidden;
    border-radius: 15px;
}

.venture-img img {
    width: 100%;
    border-radius: 15px;
    transition: transform 0.8s ease;
}

.venture-img:hover img {
    transform: scale(1.03);
}

/* === Main Category Section === */
.main-category {
    padding: 60px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.category-slide-item {
    border-radius: 15px;
    padding: 40px;
    min-height: 300px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(var(--base-rgb), 0.1);
    transition: transform 0.3s ease;
}

.category-slide-item:hover {
    transform: translateY(-5px);
}

.category-slide-item::after {
    position: absolute;
    content: "";
    inset: 0;
    background: linear-gradient(90deg, rgba(var(--base-rgb), 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.category-slide-item div {
    position: relative;
    z-index: 1;
    max-width: 300px;
}

.category-slide-item .title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--base-1);
    margin-bottom: 15px;
    line-height: 1.2;
}

.category-slide-item .text {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--title-clr);
}

/* === Learn Feature Section === */
.learn-feature-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(var(--base-rgb), 0.05) 0%, rgba(var(--white-rgb), 1) 50%, rgba(var(--base-rgb), 0.05) 100%);
    overflow: hidden;
}

.learn-feature-content {
    padding: 0 20px 40px;
}

.learn-feature-item {
    text-align: center;
    padding: 0 25px 30px;
    border: 1px solid rgba(var(--base-rgb), 0.08);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 50px;
    height: calc(100% - 50px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.learn-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(var(--base-rgb), 0.1);
}

.learn-feature-item .learn-feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(var(--base-rgb), 0.1);
    margin-top: -40px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.learn-feature-item:hover .learn-feature-icon {
    transform: scale(1.1);
}

.learn-feature-item .learn-feature-icon img {
    max-width: 60%;
    max-height: 60%;
}

.learn-feature-item .subttle {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--base-1);
}

.learn-feature-item .text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--body-clr);
}

/* === Delivery Area Section === */
.delivery-area-section {
    padding: 60px 0;
    background: var(--white);
    position: relative;
}

.zone-list-container {
    position: relative;
    margin-top: 30px;
    border: 1px solid rgba(var(--base-rgb), 0.1);
    border-radius: 15px;
    padding: 20px;
    background: rgba(var(--base-rgb), 0.02);
}

.zone-list-wrapper {
    height: 200px;
    overflow-y: auto;
    padding-right: 10px;
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.zone-list .item {
    border-radius: 10px;
    border: 1px solid rgba(var(--base-rgb), 0.1);
    background: var(--white);
    padding: 12px 20px;
    color: var(--body-clr);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.zone-list .item:hover {
    background: var(--base-1);
    color: var(--white);
    border-color: var(--base-1);
    box-shadow: 0 5px 15px rgba(var(--base-rgb), 0.2);
    transform: translateY(-3px);
}

/* === Refer Section === */
.refer-section {
    padding: 60px 0;
    background: var(--section-alt-bg);
    position: relative;
    overflow: hidden;
}

.refer-img {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.refer-img .main-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(var(--base-rgb), 0.15);
    transition: transform 0.3s ease;
}

.refer-img:hover .main-img {
    transform: translateY(-5px);
}

/* Animation pour les formes */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.refer-img .shape-1,
.refer-img .shape-2,
.refer-img .shape-3,
.refer-img .shape-4,
.refer-img .shape-5,
.refer-img .shape-6 {
    position: absolute;
    filter: drop-shadow(0 5px 15px rgba(var(--base-rgb), 0.1));
}

.refer-img .shape-1,
.refer-img .shape-3,
.refer-img .shape-5 {
    animation: float 3s ease-in-out infinite;
}

.refer-img .shape-2,
.refer-img .shape-4,
.refer-img .shape-6 {
    animation: float 4s ease-in-out infinite reverse;
}

/* === Footer et Newsletter === */
.newsletter-section {
    position: relative;
    background: linear-gradient(135deg, rgba(var(--base-rgb), 0.05) 0%, rgba(var(--white-rgb), 1) 50%, rgba(var(--base-rgb), 0.05) 100%);
    padding: 80px 0 0;
    margin-top: -20px;
}

.newsletter-wrapper {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 60px 0;
}

.newsletter-content {
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.newsletter-content .title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--title-clr);
    margin-bottom: 20px;
    position: relative;
}

.newsletter-content .title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--base-1);
    margin: 15px auto 0;
    border-radius: 2px;
}

.newsletter-content .text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--body-clr);
}

.input--grp {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.input--grp .form-control {
    height: 60px;
    border-radius: 30px;
    padding: 10px 25px 10px 25px;
    border: 1px solid rgba(var(--base-rgb), 0.2);
    font-size: 1rem;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(var(--base-rgb), 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input--grp .form-control:focus {
    border-color: var(--base-1);
    box-shadow: 0 5px 20px rgba(var(--base-rgb), 0.1);
}

.input--grp .search-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.input--grp .search-btn:hover {
    transform: translateX(3px);
}

.footer-bottom {
    background: var(--base-1);
    padding: 50px 0 30px;
    color: var(--white);
    position: relative;
}

.footer-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-widget {
    flex: 1;
    min-width: 250px;
}

.footer-widget .footer-logo {
    margin-bottom: 20px;
}

.footer-widget .footer-logo img {
    max-height: 60px;
    filter: brightness(0) invert(1);
}

.footer-widget .txt {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-widget .subtitle {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.social-icon {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-icon li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-widget.widget-links ul li {
    margin-bottom: 10px;
}

.footer-widget.widget-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-widget.widget-links ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-widget.widget-links ul li a svg {
    width: 16px;
    height: 16px;
}

.app-btn-grp {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.app-btn-grp a {
    display: block;
    transition: transform 0.3s ease;
}

.app-btn-grp a:hover {
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* === Responsive === */
@media (max-width: 1199px) {
    .banner-content .title {
        font-size: 3rem;
    }
    
    .category-slide-item {
        padding: 30px;
    }
    
    .category-slide-item .title {
        font-size: 2.2rem;
    }
    
    .learn-feature-item {
        padding: 0 20px 25px;
    }
}

@media (max-width: 991px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .banner-content .title {
        font-size: 2.5rem;
    }
    
    .navbar-bottom-wrapper .menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-bottom-wrapper .menu.active {
        max-height: 500px;
        opacity: 1;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .category-slide-item {
        min-height: 250px;
    }
    
    .footer-wrapper {
        gap: 30px;
    }
    
    .footer-widget {
        flex: 0 0 calc(50% - 15px);
        min-width: auto;
    }
}

@media (max-width: 767px) {
    .banner-content {
        padding: 10px 15px 30px;
    }
    
    .banner-content .title {
        font-size: 2.2rem;
    }
    
    .category-slide-item {
        padding: 20px;
        min-height: 220px;
    }
    
    .category-slide-item .title {
        font-size: 1.8rem;
    }
    
    .learn-feature-item .learn-feature-icon {
        width: 60px;
        height: 60px;
        margin-top: -30px;
    }
    
    .newsletter-content {
        padding: 10px;
    }
    
    .newsletter-content .title {
        font-size: 1.6rem;
    }
    
    .footer-widget {
        flex: 0 0 100%;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .banner-content .title {
        font-size: 1.8rem;
    }
    
    .banner-content .text {
        font-size: 1rem;
    }
    
    .navbar-bottom-wrapper {
        padding: 10px 15px;
    }
    
    .navbar-bottom-wrapper .logo {
        height: 40px;
    }
    
    .category-slide-item {
        min-height: 200px;
    }
    
    .category-slide-item .title {
        font-size: 1.5rem;
    }
    
    .section-header .title {
        font-size: 1.8rem;
    }
    
    .input--grp .form-control {
        height: 50px;
    }
}

/* === Animation Keyframes === */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Utility Classes === */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation: slideInUp 0.6s ease forwards;
}

.text--base {
    color: var(--base-1) !important;
}

.bg--base {
    background-color: var(--base-1) !important;
}

.shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.shadow-md {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
}

.rounded {
    border-radius: 10px !important;
}

.rounded-lg {
    border-radius: 15px !important;
}

.border-light {
    border-color: rgba(var(--base-rgb), 0.1) !important;
} 