/* ===== VARIABLES CSS ===== */
:root {
    --primary-color: #1E5AA8;
    --secondary-color: #B8860B;
    --warning-color: #DAA520;
    --light-blue: #E3F2FD;
    --dark-blue: #0D47A1;
    --gradient-primary: linear-gradient(135deg, #1E5AA8 0%, #0D47A1 100%);
    --gradient-secondary: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    --shadow-light: 0 2px 10px rgba(30, 90, 168, 0.1);
    --shadow-medium: 0 4px 20px rgba(30, 90, 168, 0.15);
    --shadow-heavy: 0 8px 30px rgba(30, 90, 168, 0.2);
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

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

.bg-primary {
    background: var(--gradient-primary) !important;
}

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

.bg-warning {
    background: var(--gradient-secondary) !important;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-warning {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}

.navbar-brand {
    padding: 0.5rem 0;
    font-size: 1.2rem;
}

.logo-container {
    position: relative;
    width: 50px;
    height: 50px;
}

.logo-leaf {
    top: 5px;
    left: 15px;
    font-size: 1rem;
}

.nav-link {
    color: #333 !important;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(30, 90, 168, 0.85) 0%, rgba(30, 90, 168, 0.6) 50%, rgba(30, 90, 168, 0.3) 100%), url('../images/logo/background_logo.jpg');
    background-size: cover;
    background-position: center right;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 90, 168, 0.3) 0%, rgba(30, 90, 168, 0.1) 60%, transparent 80%);
    opacity: 0.7;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    position: relative;
    z-index: 3;
}

.floating-elements {
    position: relative;
    height: 400px;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-1 {
    top: 20%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
}

.floating-2 {
    top: 50%;
    right: 20%;
    animation: float 3s ease-in-out infinite 1s;
}

.floating-3 {
    bottom: 20%;
    left: 30%;
    animation: float 3s ease-in-out infinite 2s;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 90, 168, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 90, 168, 0.1), transparent);
    transition: all 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white !important;
    transform: scale(1.1);
}

/* ===== ICON BOX ===== */
.icon-box {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

/* ===== STATS ===== */
.stat-item {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::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: all 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== FOOTER ===== */
footer {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

footer * {
    color: inherit;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer h4, footer h5 {
    color: #ffffff !important;
}

footer .text-primary {
    color: var(--primary-color) !important;
}

footer .text-warning {
    color: var(--warning-color) !important;
}

footer .social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(30, 90, 168, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    background: var(--gradient-primary);
    color: white !important;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 3rem;
        background-position: center;
        min-height: 85vh;
    }
    
    .hero-section .container {
        height: 100%;
    }
    
    .hero-section .row {
        min-height: 70vh;
        align-items: center;
    }
    
    .hero-content {
        padding-bottom: 2rem;
    }
    
    .hero-content .lead {
        margin-bottom: 2rem;
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .hero-content .d-flex {
        margin-bottom: 1rem;
    }
    
    .hero-section::before {
        background: linear-gradient(180deg, rgba(30, 90, 168, 0.4) 0%, rgba(30, 90, 168, 0.2) 60%, transparent 100%);
    }
    
    .hero-section::after {
        width: 100%;
        background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 100%);
    }
    
    .floating-elements {
        height: 200px;
        margin-top: 1rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .floating-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 70px;
        padding-bottom: 2rem;
        min-height: 80vh;
    }
    
    .hero-section .row {
        min-height: 65vh;
    }
    
    .hero-content {
        text-align: center;
        padding-bottom: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-content .lead {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .hero-content .d-flex {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-btn, .hero-btn-outline {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .floating-elements {
        height: 150px;
        margin-top: 0.5rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .navbar-brand {
        padding: 0.3rem 0;
    }
    
    .navbar-brand img {
        height: 55px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.shadow-sm {
    box-shadow: var(--shadow-light) !important;
}

.shadow {
    box-shadow: var(--shadow-medium) !important;
}

/* ===== MOBILE OPTIMIZATIONS ===== */
@media (max-width: 576px) {
    .min-vh-100 {
        min-height: 80vh !important;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== LOADING ANIMATIONS ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* ===== LOGO STYLES ===== */
.navbar-brand img {
    height: 65px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

footer .navbar-brand img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ===== CONTACT ICON STYLES ===== */
.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
}

/* ===== ADDITIONAL HOVER EFFECTS ===== */
.product-card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.service-detail:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.hours-item:hover {
    background-color: rgba(30, 90, 168, 0.05);
    transition: all 0.3s ease;
}

/* ===== MODERN PRODUCT CARDS ===== */
.filter-buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 0;
}

.filter-btn:hover,
.filter-btn.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.modern-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.modern-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-gradient-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cosmetique-gradient {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.complements-gradient {
    background: linear-gradient(135deg, #4834d4, #686de0);
}

.medical-gradient {
    background: linear-gradient(135deg, #00d2d3, #54a0ff);
}

.hygiene-gradient {
    background: linear-gradient(135deg, #5f27cd, #a55eea);
}

.accessoires-gradient {
    background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

.product-icon {
    font-size: 3rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.modern-product-card:hover .product-icon {
    transform: scale(1.1);
    opacity: 1;
}

.product-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cosmetique-badge {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    backdrop-filter: blur(10px);
}

.complements-badge {
    background: rgba(72, 52, 212, 0.2);
    color: #4834d4;
    backdrop-filter: blur(10px);
}

.medical-badge {
    background: rgba(0, 210, 211, 0.2);
    color: #00d2d3;
    backdrop-filter: blur(10px);
}

.hygiene-badge {
    background: rgba(95, 39, 205, 0.2);
    color: #5f27cd;
    backdrop-filter: blur(10px);
}

.accessoires-badge {
    background: rgba(255, 159, 243, 0.2);
    color: #ff9ff3;
    backdrop-filter: blur(10px);
}

.product-content {
    padding: 1.5rem;
}

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

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.star.active {
    color: #ffd700;
}

.rating-text {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(30, 90, 168, 0.3);
}

.product-btn i {
    transition: all 0.3s ease;
}

.product-btn:hover i {
    transform: translateX(3px);
}

/* ===== PRODUCT REAL IMAGES ===== */
.product-real-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    border-radius: 0;
}

.modern-product-card:hover .product-real-image {
    transform: scale(1.05);
}

.product-image-container {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* ===== MODAL IMAGES OPTIMIZATION ===== */
.modal-body .img-fluid {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.modal-body .img-fluid:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.modal-body .row .col-md-6:first-child {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-body .product-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.modal-body .product-gallery .img-fluid {
    height: 120px;
    margin-bottom: 0;
}

/* ===== MODAL ENHANCEMENTS ===== */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
}

.modal-title {
    font-weight: 600;
}

.modal-body h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-body ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal-body ul li:last-child {
    border-bottom: none;
}

/* ===== RESPONSIVE PRODUCT CARDS ===== */
@media (max-width: 768px) {
    .filter-buttons-container {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .product-image-container {
        height: 160px;
    }
    
    .product-icon {
        font-size: 2.5rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.1rem;
    }
    
    .product-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .product-btn {
        justify-content: center;
    }
    
    /* Modal responsive */
    .modal-body .product-gallery {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .modal-body .img-fluid {
        height: 120px;
    }
    
    .modal-dialog {
        margin: 1rem;
    }
}

/* ===== HERO BUTTONS ===== */
.hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.4);
}

.hero-btn i {
    transition: all 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

.hero-btn-outline {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.hero-btn-outline:hover::before {
    left: 0;
}

.hero-btn-outline:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.hero-btn-outline i {
    transition: all 0.3s ease;
}

.hero-btn-outline:hover i {
    transform: scale(1.1);
}

/* ===== ENHANCED NAVBAR ===== */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover {
    transform: translateY(-1px);
}

/* ===== ENHANCED SERVICE CARDS ===== */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 90, 168, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.about-image-container {
    position: relative;
}

.about-image {
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 90, 168, 0.1);
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mission-card, .vision-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.5s ease;
}

.mission-card:hover::before, .vision-card:hover::before {
    left: 100%;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.value-card {
    transition: all 0.3s ease;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 90, 168, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--gradient-primary);
    color: white !important;
    transform: scale(1.1);
}

.team-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 90, 168, 0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.avatar-placeholder {
    width: 100px;
    height: 100px;
    transition: all 0.3s ease;
}

.team-card:hover .avatar-placeholder {
    transform: scale(1.05);
}

.achievement-card {
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 3rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.achievement-card:hover .achievement-number {
    transform: scale(1.1);
}

/* ===== RESPONSIVE ABOUT PAGE ===== */
@media (max-width: 768px) {
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .mission-card, .vision-card {
        margin-bottom: 1rem;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .avatar-placeholder {
        width: 80px;
        height: 80px;
    }
}
