/* ========================================
   INKUPANDA - Style Principal
   Couleurs: Vert Bambou + Accent Bleu Petrole
   Style: Urbain / Nature / Street Art
   ======================================== */

/* Variables */
:root {
    --primary-red: #3B7A2C;
    --primary-black: #1A1A1A;
    --secondary-black: #2A2A2A;
    --light-gray: #F5F5F5;
    --medium-gray: #CCCCCC;
    --white: #FFFFFF;
    --gradient-red: linear-gradient(135deg, #3B7A2C 0%, #56AB2F 100%);
    /* Accent: Bleu Petrole */
    --accent-dark: #145570;
    --accent-mid: #1A6B8A;
    --accent-light: #2C8FB5;
    --accent-pale: #7FC4E0;
    --gradient-accent: linear-gradient(135deg, #145570 0%, #1A6B8A 100%);
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Impact', 'Arial Black', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 130px; /* Space for top bar (38px) + header (~92px) */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.text-gradient {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Top Bar (Annonces + Login) */
.top-bar {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    gap: 2rem;
}

/* Announcement Ticker */
.announcement-ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    gap: 3rem;
    animation: ticker-scroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    color: #ffffff;
    font-weight: 500;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicate ticker content for seamless loop */
.ticker-content::after {
    content: attr(data-content);
}

/* Top Bar Links */
.top-bar-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    white-space: nowrap;
}

.top-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-link:hover {
    color: var(--primary-red);
}

.top-link i {
    font-size: 0.85rem;
}

.separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Adjust header to be below top bar */
/* Header */
.header {
    position: fixed;
    top: 38px; /* Height of top bar */
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(59, 122, 44, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-black);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    transition: var(--transition);
}

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    padding: 1rem 0;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--primary-black);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--primary-red);
    color: var(--white);
}

.dropdown-menu a.disabled {
    color: var(--medium-gray);
    cursor: not-allowed;
}

.dropdown-menu a.disabled:hover {
    background: transparent;
    color: var(--medium-gray);
}

.badge {
    background: var(--gradient-red);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 0.5rem;
}

/* Nav Actions (User & Cart Icons) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon {
    position: relative;
    color: var(--primary-black);
    font-size: 1.3rem;
    transition: var(--transition);
    text-decoration: none;
}

.nav-icon:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #E31E24 0%, #C41A1F 100%);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid var(--white);
}

.cart-badge.empty {
    display: none;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 130px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    overflow: hidden;
    margin-top: -130px;
    padding-top: 130px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="3" fill="%233B7A2C" opacity="0.3"/><circle cx="400" cy="200" r="2" fill="%233B7A2C" opacity="0.2"/><circle cx="800" cy="150" r="4" fill="%233B7A2C" opacity="0.3"/><circle cx="1000" cy="300" r="3" fill="%233B7A2C" opacity="0.2"/></svg>');
    opacity: 0.1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 10;
    animation: fadeInUp 1s ease;
}

/* Giant Animated Logo */
.hero-logo-container {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 40px rgba(59, 122, 44, 0.5));
    z-index: 2;
    position: relative;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.float-item {
    position: absolute;
    color: var(--primary-red);
    animation: float 4s ease-in-out infinite;
}

.float-item.spray-can {
    top: 10%;
    left: 15%;
    font-size: 2.5rem;
    animation-delay: 0s;
    animation: float 3s ease-in-out infinite, spin 8s linear infinite;
}

.float-item.paint-brush {
    top: 20%;
    right: 10%;
    font-size: 2rem;
    animation-delay: 0.5s;
    animation: float 3.5s ease-in-out infinite, spin-reverse 10s linear infinite;
}

.float-item.palette {
    bottom: 25%;
    left: 5%;
    font-size: 2.2rem;
    animation-delay: 1s;
    animation: float 4s ease-in-out infinite, wobble 3s ease-in-out infinite;
}

.float-item.star {
    bottom: 15%;
    right: 15%;
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite, twinkle 2s ease-in-out infinite;
    animation-delay: 1.5s;
}

.float-item.circle {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    background: rgba(59, 122, 44, 0.1);
    animation: float 4s ease-in-out infinite, scale-pulse 2s ease-in-out infinite;
}

.float-item.circle:nth-child(5) {
    top: 35%;
    left: 8%;
    animation-delay: 0.7s;
}

.float-item.circle:nth-child(6) {
    top: 60%;
    right: 12%;
    width: 30px;
    height: 30px;
    animation-delay: 1.2s;
}

.float-item.sakura {
    font-size: 2rem;
    animation: float 5s ease-in-out infinite, drift 6s ease-in-out infinite;
}

.float-item.sakura:nth-child(7) {
    top: 5%;
    left: 50%;
    animation-delay: 0.3s;
}

.float-item.sakura:nth-child(8) {
    bottom: 10%;
    left: 40%;
    animation-delay: 1.8s;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.1;
}

.ink-drop {
    position: absolute;
    bottom: -50px;
    width: 100px;
    height: 150px;
    background: var(--primary-red);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: drip 3s ease-in-out infinite;
}

.ink-drop:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.ink-drop:nth-child(2) {
    left: 50%;
    animation-delay: 1s;
}

.ink-drop:nth-child(3) {
    left: 80%;
    animation-delay: 2s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(26, 107, 138, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 107, 138, 0.55);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-full {
    width: 100%;
}

/* Section Common */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(59, 122, 44, 0.2);
}

.service-card.featured {
    border: 2px solid var(--accent-mid);
}

.service-card.disabled {
    opacity: 0.6;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.3rem 2.5rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(26, 107, 138, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(59, 122, 44, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.service-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    color: var(--accent-mid);
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

.coming-soon {
    display: inline-block;
    background: var(--medium-gray);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ========================================
   Promotions Section V2
   ======================================== */
.promotions {
    background: #fdfdfd;
    padding: 8rem 0;
}

.promos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.promo-card-v2 {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.promo-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.promo-header {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #eee;
}

.promo-header h3 {
    font-size: 1.4rem;
    color: var(--primary-black);
    text-transform: uppercase;
}

.promo-content {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
}

.promo-features li {
    padding: 0.8rem 0;
    color: #555;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px dashed #eee;
}

.promo-features li:last-child {
    border-bottom: none;
}

.promo-features li i {
    color: #28a745;
    font-size: 0.9rem;
}

.promo-price-v2 {
    margin-bottom: 2.5rem;
    color: var(--primary-red);
}

.promo-price-v2 .currency {
    font-size: 1.5rem;
    font-weight: 700;
    vertical-align: top;
    margin-top: 0.5rem;
    display: inline-block;
}

.promo-price-v2 .amount {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1;
}

/* Featured / Best Value Card */
.promo-card-v2.featured {
    border: 3px solid var(--primary-red);
    position: relative;
    transform: scale(1.05);
    z-index: 5;
}

.promo-card-v2.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.promo-card-v2.featured .promo-header {
    background: var(--gradient-red);
}

.promo-card-v2.featured .promo-header h3 {
    color: var(--white);
}

.featured-label {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-black);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.btn-outline-red {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

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

.promo-disclaimer {
    margin-top: 4rem;
    padding: 2rem;
    background: #f0f7ff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-left: 5px solid #007bff;
}

.promo-disclaimer i {
    font-size: 2rem;
    color: #007bff;
}

.promo-disclaimer p {
    color: #444;
    font-size: 1.1rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .promo-card-v2.featured {
        transform: none;
    }
    .promo-card-v2.featured:hover {
        transform: translateY(-10px);
    }
}

/* Histoire Section */
.histoire {
    background: var(--white);
}

.histoire-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.histoire-image .image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(59, 122, 44, 0.3);
}

.histoire-image .image-placeholder i {
    font-size: 5rem;
    color: var(--white);
    opacity: 0.5;
}

.histoire-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.histoire-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Mission Section */
.mission {
    background: var(--primary-black);
    color: var(--white);
}

.mission .section-title,
.mission .section-subtitle {
    color: var(--white);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.mission-card {
    background: var(--secondary-black);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.mission-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.mission-card p {
    color: var(--light-gray);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.contact-item a,
.contact-item p {
    color: #666;
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-red);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-mid);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.8;
}

.footer-section i {
    color: var(--primary-red);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--medium-gray);
}

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

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

/* Hero Logo Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes wobble {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes scale-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes drift {
    0% {
        transform: translateX(0px) rotate(0deg);
    }
    33% {
        transform: translateX(15px) rotate(10deg);
    }
    66% {
        transform: translateX(-15px) rotate(-10deg);
    }
    100% {
        transform: translateX(0px) rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 130px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 130px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: var(--transition);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
    }

    .top-bar {
        font-size: 0.8rem;
    }

    .top-bar-content {
        padding: 0.35rem 0;
    }

    .hero-logo {
        width: 280px;
        height: 280px;
    }

    .floating-elements {
        width: 400px;
        height: 400px;
    }

    .float-item {
        font-size: 1.5rem !important;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .histoire-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        height: 60px;
    }

    .histoire-text h2 {
        text-align: center;
    }

    .page-hero {
        padding: 5rem 0 2.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 115px;
    }

    .container {
        padding: 0 12px;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .floating-elements {
        width: 300px;
        height: 300px;
    }

    .float-item {
        font-size: 1.2rem !important;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .footer-logo {
        height: 50px;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .promotions {
        padding: 4rem 0;
    }
}

@media (max-width: 360px) {
    .hero-logo {
        width: 160px;
        height: 160px;
    }

    .hero-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 10px;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }
}
