* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ff6b35 0%, #ffce00 25%, #009639 50%, #ffce00 75%, #ff6b35 100%);
    min-height: 100vh;
    background-attachment: fixed;
}

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

/* Jamaica Flag Stripes */
.jamaica-stripe {
    height: 8px;
    background: linear-gradient(45deg, #ff6b35 0%, #ff6b35 25%, #ffce00 25%, #ffce00 50%, #009639 50%, #009639 75%, #ffce00 75%, #ffce00 100%);
}

.rasta-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b35 0%, #ffce00 33%, #009639 66%, #ffce00 100%);
    margin: 10px auto 30px;
    border-radius: 2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(45deg, #009639, #ffce00, #000000) 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    background-clip: padding-box;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.navbar {
    padding: 0;
}

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

.logo h2 {
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo h2:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 2px;
    left: 50%;
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger.animating {
    pointer-events: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.bg-slide.active {
    opacity: 1;
}

.bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: white;
    line-height: 1.7;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #ffce00);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    border-color: #009639;
}

.btn-secondary {
    background: linear-gradient(45deg, #009639, #00b347);
    color: #333;
    box-shadow: 0 6px 20px rgba(0, 150, 57, 0.4);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 150, 57, 0.5);
    border-color: #ff6b35;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}


.section-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

/* Catalogue Section */
.catalogue {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: relative;
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

.services-grid.preview {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin: 0 auto 3rem;
    justify-items: center;
    align-items: start;
}

.more-services-btn {
    text-align: center;
    margin-top: 3rem;
}

.btn-more {
    background: linear-gradient(45deg, #ff6b35, #ffce00);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-more:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.service-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    width: 100%;
    max-width: 450px;
}


.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border-color: #ff6b35;
}

.service-image {
    position: relative;
    overflow: hidden;
}


.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #333;
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    color: #666;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
    padding: 15px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.05), rgba(255, 206, 0, 0.05), rgba(0, 150, 57, 0.05));
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.duration {
    color: #666;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.duration i {
    color: #ff6b35;
}

.price {
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.acompte {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 206, 0, 0.3));
    padding: 1.2rem;
    border-radius: 15px;
    margin-bottom: 1.8rem;
    font-size: 1rem;
    text-align: center;
    border: 2px solid #ff6b35;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

/* Conseils Section */
.conseils {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 206, 0, 0.1) 50%, rgba(0, 150, 57, 0.1) 100%);
    position: relative;
}


.conseils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.conseil-card {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}


.conseil-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.conseil-icon {
    font-size: 4rem;
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.conseil-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #333;
}

.conseil-card p {
    color: #666;
    line-height: 1.7;
}

/* Produits Section */
.produits {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: relative;
}

.produits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(0, 150, 57, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 206, 0, 0.05) 0%, transparent 50%);
}

.produits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.produit-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-top: 6px solid transparent;
    border-image: linear-gradient(45deg, #009639, #ffce00) 1;
    position: relative;
}

.produit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(45deg, #ffce00, #009639);
    animation: shimmer 3s ease-in-out infinite;
}

.produit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.produit-image {
    position: relative;
    overflow: hidden;
    height: 400px;
    width: 100%;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 20px;
}

.produit-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 206, 0, 0.1), rgba(0, 150, 57, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.produit-card:hover .produit-image::after {
    opacity: 1;
}

.produit-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    border-radius: 15px;
    display: block;
}

.produit-card:hover .produit-image img {
    transform: scale(1.1);
}

.produit-content {
    padding: 2.5rem;
    text-align: center;
}

.produit-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #333;
}

.produit-content p {
    color: #666;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.produit-price {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.8rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* À propos Section */
.apropos {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(255, 206, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, rgba(0, 150, 57, 0.1) 100%);
    position: relative;
}

.apropos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(0, 150, 57, 0.02) 40px,
        rgba(0, 150, 57, 0.02) 80px,
        transparent 80px,
        transparent 120px,
        rgba(255, 206, 0, 0.02) 120px,
        rgba(255, 206, 0, 0.02) 160px
    );
}

.apropos-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.apropos-text {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    text-align: center;
}

.apropos-text p {
    margin-bottom: 1.8rem;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.valeurs {
    margin-top: 2.5rem;
}

.valeurs h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.valeurs ul {
    list-style: none;
}

.valeurs li {
    padding: 1rem 0;
    color: #666;
    position: relative;
    padding-left: 2.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.valeurs li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.apropos-image {
    position: relative;
}

.apropos-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, #009639, #ffce00, #000000, #009639);
    border-radius: 30px;
    z-index: -1;
    animation: rotate 12s linear infinite reverse;
}

.apropos-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: conic-gradient(from 0deg at 50% 50%, rgba(0, 150, 57, 0.03), rgba(255, 206, 0, 0.03), rgba(0, 0, 0, 0.01), rgba(0, 150, 57, 0.03));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    position: relative;
    z-index: 1;
}

.contact-form {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 6px solid transparent;
    border-image: linear-gradient(45deg, #009639, #ffce00) 1;
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(45deg, #009639, #ffce00);
    border-radius: 25px 25px 0 0;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border-left: 6px solid transparent;
    border-image: linear-gradient(45deg, #009639, #ffce00) 1;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-item i {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #ff6b35, #ffce00, #009639);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
}

.social-links {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 6px solid transparent;
    border-image: linear-gradient(45deg, #ffce00, #009639) 1;
}

.social-links h4 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #ffce00);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(45deg, #009639, #00b347);
    color: #333;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333 0%, #000 50%, #333 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 30px,
        rgba(0, 150, 57, 0.1) 30px,
        rgba(0, 150, 57, 0.1) 60px,
        transparent 60px,
        transparent 90px,
        rgba(255, 206, 0, 0.1) 90px,
        rgba(255, 206, 0, 0.1) 120px
    );
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ff6b35, #ffce00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.footer-section ul li a:hover {
    color: #ff6b35;
    padding-left: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.payment-methods {
    display: flex;
    gap: 2rem;
    font-size: 2.5rem;
    flex-wrap: wrap;
}

.payment-methods i {
    color: #ccc;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: #ff6b35;
    transform: scale(1.3);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 3px solid #ff6b35;
    color: #ccc;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom .credits {
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom .credits a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom .credits a:hover {
    color: #ffce00;
    text-shadow: 0 0 5px rgba(255, 206, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header h2 {
        text-align: center !important;
    }
    
    .services-grid.preview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hamburger {
        display: flex;
        z-index: 1002;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 3rem 0;
        border-top: 3px solid transparent;
        border-image: linear-gradient(45deg, #009639, #ffce00) 1;
        z-index: 1001;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .logo h2 {
        font-size: 1.5rem;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid,
    .conseils-grid,
    .produits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .btn {
        padding: 15px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .service-content,
    .apropos-text,
    .contact-form {
        padding: 2rem;
    }
    
    .service-card,
    .conseil-card,
    .produit-card {
        margin: 0 10px;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem;
    }
    
    .logo h2 {
        font-size: 1.3rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .service-content,
    .apropos-text,
    .contact-form,
    .contact-item,
    .social-links {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
}

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

.service-card,
.conseil-card,
.produit-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Glow effects */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 150, 57, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 150, 57, 0.8), 0 0 30px rgba(255, 206, 0, 0.5); }
}

.btn-primary:hover {
    animation: glow 2s ease-in-out infinite;
}