/* Shared Styles for Petsi Website */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors */
    --warm-beige-cream: #F5E6D3;
    --rich-brown: #4A3428;
    --medium-brown: #8B6341;
    --caramel-brown: #D4A574;

    /* Accent Colors */
    --soft-coral: #FF9B71;
    --blush-pink: #FFB5BA;
    --light-peach: #F7D4A0;

    /* Neutral Tones */
    --off-white: #FDFBF7;
    --light-tan: #E8D5C4;
    --medium-gray: #6B6B6B;
    --charcoal: #2D2D2D;

    /* Text colors */
    --text-dark: #2D2D2D;
    --text-light: #6B6B6B;

    /* Background colors */
    --bg-white: #FDFBF7;
    --bg-light: #F5E6D3;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Header */
.header {
    background: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    transition: padding 0.3s ease;
}

.header.scrolled .header-container {
    padding: 0.25rem 1.5rem;
}

/* Navigation */
.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-right: 3rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.logo img {
    height: 140px;
    margin-top: -10px;
    margin-bottom: -80px;
    transition: all 0.3s ease;
    transform-origin: center center;
}

.logo:hover img {
    transform: scale(1.1);
}

.header.scrolled .logo img {
    height: 60px;
    margin-top: 0;
    margin-bottom: 0;
}

.header.scrolled .logo:hover img {
    height: 120px !important;
    margin-top: 0px !important;
    margin-bottom: -30px !important;
    transform: scale(1.1) !important;
    position: relative;
    z-index: 20;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 3rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: normal;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--medium-brown);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--medium-brown);
}

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

/* Buttons */
.btn {
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--medium-brown);
    color: white;
    transform: translateY(0);
}

.btn-primary:hover {
    background: var(--rich-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.btn-outline:hover {
    background: var(--medium-brown);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-full {
    width: 100%;
    padding: 0.875rem;
    font-size: 1.125rem;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--rich-brown);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-link,
.mobile-menu .btn {
    display: block;
    padding: 0.75rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Page Header */
.page-header {
    background: var(--warm-beige-cream);
    padding: 4rem 1.5rem;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rich-brown);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Main Content */
.main-content {
    padding: 4rem 1.5rem;
    background: white;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
}

.content-section.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.content-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.content-section h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--medium-brown);
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.content-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Service Cards */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border: 1px solid var(--light-tan);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-color: var(--caramel-brown);
}

.service-icon {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Pricing Table */
.pricing-table {
    background: white;
    border: 1px solid var(--light-tan);
    border-radius: 0.5rem;
    overflow: hidden;
    margin: 2rem 0;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-tan);
    transition: background 0.3s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background: var(--warm-beige-cream);
}

.pricing-label {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-value {
    text-align: right;
    color: var(--medium-brown);
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-tan);
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--warm-beige-cream);
    border-radius: 0.5rem;
}

.contact-item h3 {
    color: var(--medium-brown);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: var(--off-white);
    padding: 3rem 1.5rem;
    animation: fadeIn 1s ease;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--warm-beige-cream);
}

.footer-column a {
    display: block;
    color: var(--light-tan);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-column a:hover {
    color: var(--off-white);
    padding-left: 10px;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    text-align: center;
    color: var(--light-tan);
}

/* Scroll reveal helper */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-reveal.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Homepage Specific Styles */

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease;
}

.hero-image-container {
    background-color: #e8f4f8;
    background-size: cover;
    background-position: center;
    background-image: url('1.jpg');
}

/* Desktop Hero */
@media (min-width: 769px) {
    .hero {
        height: 500px;
    }

    .hero-image-container {
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .hero-content-box {
        position: absolute;
        left: 270px;
        top: 10%;
        transform: translateY(-50%);
        background: white;
        padding: 3rem;
        border-radius: 0.5rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        max-width: 500px;
        z-index: 10;
        animation: slideInLeft 1s ease 0.5s both;
    }
}

/* Mobile Hero */
@media (max-width: 768px) {
    .hero {
        display: block;
    }

    .hero-image-container {
        width: 100%;
        height: 300px;
        display: block;
    }

    .hero-content-box {
        background: white;
        padding: 2rem;
        margin: 0;
        position: relative;
    }
}

.hero-content-box h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rich-brown);
    margin-bottom: 1rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons .btn {
    flex: 1;
    text-align: center;
    background: var(--medium-brown);
    padding: 0.875rem 1.5rem;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    animation: fadeIn 1s ease 0.6s both;
}

.rating-label {
    font-weight: 600;
}

.stars {
    color: #00b67a;
    font-size: 1rem;
}

.rating-text {
    color: var(--text-light);
}

.trustpilot {
    color: #00b67a;
    font-weight: 600;
}

/* Three Column Benefits */
.benefits {
    padding: 4rem 1.5rem;
    background: white;
}

.benefits-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.benefit {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.benefit:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit.animate {
    opacity: 1;
}

.benefit-icon {
    width: 9rem;
    height: 9rem;
    margin: 0 auto -0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.benefit:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Pet Selector Section */
.pet-selector-section {
    padding: 4rem 1.5rem;
    background: var(--warm-beige-cream);
}

.pet-selector-container {
    max-width: 48rem;
    margin: 0 auto;
    background: white;
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
}

.pet-selector-container.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.pet-selector-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.pet-selector-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pet-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.pet-type {
    padding: 1rem;
    border: 2px solid var(--light-tan);
    border-radius: 0.375rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    transform: translateY(0);
}

.pet-type:hover {
    border-color: var(--medium-brown);
    background: var(--light-peach);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pet-type-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.pet-type:hover .pet-type-icon {
    transform: scale(1.1);
}

.pet-type-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Two Column CTA Sections */
.cta-section {
    padding: 6rem 1.5rem;
    background: white;
    overflow: hidden;
}

.cta-section:nth-child(even) {
    background: var(--warm-beige-cream);
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-section:nth-child(even) .cta-container {
    direction: rtl;
}

.cta-section:nth-child(even) .cta-content {
    direction: ltr;
}

.cta-section:nth-child(even) .cta-image {
    direction: ltr;
}

.cta-content {
    opacity: 0;
    transform: translateX(-50px);
}

.cta-content.animate {
    animation: slideInLeft 0.8s ease forwards;
}

.cta-section:nth-child(even) .cta-content.animate {
    animation: slideInRight 0.8s ease forwards;
}

.cta-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-image img {
    width: 100%;
    border-radius: 0.5rem;
    border: 4px solid var(--caramel-brown);
}

.cta-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-brown);
    opacity: 0;
    transform: translateX(50px);
    transition: transform 0.3s ease;
}

.cta-image:hover {
    transform: scale(1.02);
}

.cta-image.animate {
    animation: slideInRight 0.8s ease forwards;
}

.cta-section:nth-child(even) .cta-image.animate {
    animation: slideInLeft 0.8s ease forwards;
}

/* Other sections */
.testimonial-section {
    padding: 6rem 1.5rem;
    background: var(--warm-beige-cream);
}

.testimonial-container {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-container.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.testimonial-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.sustainability-section {
    padding: 6rem 1.5rem;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background image container */
.sustainability-bg {
    position: absolute;
    top: -20%;
    left: 0;
    right: 0;
    bottom: -20%;
    background-image: url('sustainability-bg.jpg'); /* Add your background image here */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    will-change: transform;
    transition: transform 0.1s linear;
    height: 1100px;
}

/* Ensure content is above the background */
.sustainability-container {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.sustainability-container.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.sustainability-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sustainability-text {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.next-section {
    padding: 6rem 1.5rem;
    background: white;
}

.next-container {
    max-width: 1280px;
    margin: 0 auto;
}

.next-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.next-container h2.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.next-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.next-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 1px solid var(--light-tan);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.next-card.animate {
    animation: fadeInUp 0.8s ease forwards;
}

.next-card:nth-child(2) {
    animation-delay: 0.2s;
}

.next-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    border-color: var(--caramel-brown);
}

.next-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.next-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        padding: 1rem;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .logo {
        order: 1;
        margin: 0 auto;
    }

    .mobile-menu-toggle {
        display: block;
        order: 2;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Mobile menu open state - logo size */
    .header.menu-open .logo img {
        height: 60px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        transition: all 0.3s ease;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

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

    .pricing-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-value {
        text-align: center;
        margin-top: 0.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    /* Mobile menu open state - logo size */
    .header.menu-open .logo img {
        height: 60px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Homepage mobile styles */
    .hero-content-box h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .pet-types {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
        grid-template-columns: 1fr;
    }

    .cta-section:nth-child(even) .cta-container {
        direction: ltr;
    }

    .cta-image {
        height: 200px;
    }

    .next-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .nav-left,
    .nav-right {
        gap: 1rem;
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}
/* Ajoutez ces styles à votre fichier styles.css existant */

/* Contact Page Specific Styles */

/* Contact Info Grid - Updated */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contact-item {
    background: var(--warm-beige-cream);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--medium-brown);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--medium-brown);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--rich-brown);
    text-decoration: underline;
}

/* Form Specific Styles */
.form-submit {
    text-align: center;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Section Notes */
.section-note {
    margin-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

/* Emergency Box */
.emergency-box {
    background: var(--warm-beige-cream);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 2px solid var(--soft-coral);
}

.emergency-box h3 {
    color: var(--soft-coral);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.emergency-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--medium-brown);
    margin: 1rem 0;
}

.emergency-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Hours Table */
.hours-table {
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .emergency-box {
        padding: 1.5rem;
    }

    .emergency-number {
        font-size: 1.25rem;
    }
}


/* Ajoutez ces styles à votre fichier styles.css */

/* Floating Chat Widget */
.floating-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Chat Toggle Button */
.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--medium-brown);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    background: var(--rich-brown);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.chat-toggle svg {
    width: 28px;
    height: 28px;
    transition: all 0.3s ease;
}

.chat-toggle.active .chat-icon-open {
    display: none;
}

.chat-toggle.active .chat-icon-close {
    display: block !important;
}

/* Chat Channels Container */
.chat-channels {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom right;
}

.chat-channels.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

/* Chat Header */
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: var(--warm-beige-cream);
    border-radius: 12px 12px 0 0;
}

.chat-header span {
    font-weight: 600;
    color: var(--rich-brown);
    font-size: 16px;
}

.close-chat {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--medium-brown);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-chat:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--rich-brown);
}

/* Chat Options */
.chat-options {
    padding: 12px;
}

.chat-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.chat-option:last-child {
    margin-bottom: 0;
}

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

.chat-option:hover {
    transform: translateX(4px);
}

.chat-option:hover::before {
    left: 100%;
}

/* Chat Icons */
.chat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.chat-icon svg {
    width: 24px;
    height: 24px;
}

/* Option Specific Colors */
.chat-option.whatsapp {
    background: #e8f5e9;
}

.chat-option.whatsapp:hover {
    background: #c8e6c9;
}

.chat-option.whatsapp .chat-icon {
    background: #25d366;
    color: white;
}

.chat-option.messenger {
    background: #e3f2fd;
}

.chat-option.messenger:hover {
    background: #bbdefb;
}

.chat-option.messenger .chat-icon {
    background: #0084ff;
    color: white;
}

.chat-option.instagram {
    background: #fce4ec;
}

.chat-option.instagram:hover {
    background: #f8bbd0;
}

.chat-option.instagram .chat-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.chat-option.phone {
    background: #e8f5e9;
}

.chat-option.phone:hover {
    background: #c8e6c9;
}

.chat-option.phone .chat-icon {
    background: #4caf50;
    color: white;
}

.chat-option.email {
    background: #fff3e0;
}

.chat-option.email:hover {
    background: #ffe0b2;
}

.chat-option.email .chat-icon {
    background: #ff9800;
    color: white;
}

.chat-option span {
    font-weight: 500;
    font-size: 14px;
}

/* Animation for chat options on open */
.chat-channels.active .chat-option {
    animation: slideInFromRight 0.4s ease forwards;
}

.chat-channels.active .chat-option:nth-child(1) {
    animation-delay: 0.05s;
}

.chat-channels.active .chat-option:nth-child(2) {
    animation-delay: 0.1s;
}

.chat-channels.active .chat-option:nth-child(3) {
    animation-delay: 0.15s;
}

.chat-channels.active .chat-option:nth-child(4) {
    animation-delay: 0.2s;
}

.chat-channels.active .chat-option:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pulse animation for button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(74, 52, 40, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

.chat-toggle:not(.active) {
    animation: pulse 2s infinite;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .floating-chat-widget {
        bottom: 15px;
        right: 15px;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
    }

    .chat-toggle svg {
        width: 24px;
        height: 24px;
    }

    .chat-channels {
        width: calc(100vw - 30px);
        right: -15px;
        bottom: 70px;
    }

    .chat-option {
        padding: 10px 14px;
    }

    .chat-icon {
        width: 36px;
        height: 36px;
    }

    .chat-icon svg {
        width: 20px;
        height: 20px;
    }
}
/* Remplacez l'animation existante du chat-toggle par celle-ci dans votre styles.css */

/* Animation de sonnerie (ring) */
@keyframes ring {
    0% { transform: rotate(0); }
    10%, 20% { transform: rotate(-15deg); }
    30%, 40% { transform: rotate(15deg); }
    50%, 60% { transform: rotate(-15deg); }
    70%, 80% { transform: rotate(15deg); }
    90% { transform: rotate(0); }
    100% { transform: rotate(0); }
}

/* Timeline de l'animation : ring pendant 1s, puis pause de 2s = total 3s */
@keyframes ring-with-pause {
    0% { transform: rotate(0); }
    3.33%, 6.66% { transform: rotate(-15deg); }
    10%, 13.33% { transform: rotate(15deg); }
    16.66%, 20% { transform: rotate(-15deg); }
    23.33%, 26.66% { transform: rotate(15deg); }
    30% { transform: rotate(0); }
    /* Pause de 30% à 100% (2 secondes sur 3) */
    100% { transform: rotate(0); }
}

/* Effet de cloche plus réaliste */
@keyframes bell-ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    5%, 15% {
        transform: rotate(25deg);
    }
    10%, 20% {
        transform: rotate(-25deg);
    }
    25% {
        transform: rotate(15deg);
    }
    30% {
        transform: rotate(-15deg);
    }
    35% {
        transform: rotate(5deg);
    }
    40% {
        transform: rotate(-5deg);
    }
    45%, 100% {
        transform: rotate(0deg);
    }
}

/* Appliquer l'animation au bouton - sonnerie toutes les 3 secondes */
.chat-toggle:not(.active) {
    transform-origin: center top;
    animation: bell-ring 3s ease-in-out infinite;
    position: relative;
}

/* Ajouter un effet visuel de "vibration" pendant la sonnerie */
@keyframes vibrate {
    0%, 45%, 100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    5%, 10%, 15%, 20%, 25%, 30%, 35%, 40% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3),
                    0 0 25px rgba(139, 99, 65, 0.5);
    }
}

/* Combiner sonnerie et vibration */
.chat-toggle:not(.active) {
    transform-origin: center top;
    animation: bell-ring 3s ease-in-out infinite,
               vibrate 3s ease-in-out infinite;
}

/* Désactiver les animations au survol */
.chat-toggle:not(.active):hover {
    animation: none;
    transform: scale(1.1) rotate(0);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Option avec effet sonore visuel (ondes) */
.chat-toggle:not(.active)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--medium-brown);
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: ring-wave 3s ease-out infinite;
}

@keyframes ring-wave {
    0%, 45%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
    5% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    40% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Language Selector Styles - Add this to the end of your styles.css */

/* Language Selector Styles */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: 1px solid var(--light-tan);
    border-radius: 0.375rem;
    color: var(--text-dark);
    font-weight: normal;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
}

.language-toggle:hover {
    border-color: var(--medium-brown);
    background: var(--warm-beige-cream);
    color: var(--medium-brown);
}

.language-toggle.active {
    border-color: var(--medium-brown);
    background: var(--warm-beige-cream);
    color: var(--medium-brown);
}

.current-lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.current-lang-code {
    font-size: 0.875rem;
    font-weight: 600;
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.language-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Styles */
.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid var(--light-tan);
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--warm-beige-cream);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--warm-beige-cream);
    color: var(--medium-brown);
}

.language-option.active {
    background: var(--light-peach);
    color: var(--rich-brown);
    font-weight: 600;
}

.lang-flag {
    font-size: 1.2rem;
    line-height: 1;
}

.lang-name {
    flex: 1;
    font-size: 0.875rem;
}

.lang-code {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.language-option.active .lang-code {
    color: var(--medium-brown);
}

/* Desktop Navigation Integration */
.nav-right .language-selector {
    margin-left: 1rem;
}

/* Mobile Menu Integration */
.mobile-menu .language-selector {
    margin-top: 1rem;
    padding: 0 0.75rem;
}

.mobile-menu .language-toggle {
    width: 100%;
    justify-content: center;
    padding: 0.875rem;
    border-radius: 0.5rem;
    background: var(--warm-beige-cream);
    border: 1px solid var(--caramel-brown);
}

.mobile-menu .language-dropdown {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    transform: none;
}

.mobile-menu .language-dropdown.active {
    transform: none;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .language-toggle {
        padding: 0.4rem 0.6rem;
    }

    .current-lang-flag {
        font-size: 1.1rem;
    }

    .current-lang-code {
        font-size: 0.8rem;
    }

    .nav-right .language-selector {
        margin-left: 0.5rem;
    }
}

@media (max-width: 768px) {
    /* Hide desktop language selector on mobile */
    .nav-right .language-selector {
        display: none;
    }

    /* Show mobile language selector */
    .mobile-menu .language-selector {
        display: block;
    }

    .mobile-menu .language-toggle {
        font-size: 1rem;
    }

    .mobile-menu .current-lang-flag {
        font-size: 1.3rem;
    }
}

/* Animation for language options */
.language-dropdown.active .language-option {
    animation: slideInFromTop 0.3s ease forwards;
}

.language-dropdown.active .language-option:nth-child(1) {
    animation-delay: 0.05s;
}

.language-dropdown.active .language-option:nth-child(2) {
    animation-delay: 0.1s;
}

.language-dropdown.active .language-option:nth-child(3) {
    animation-delay: 0.15s;
}

.language-dropdown.active .language-option:nth-child(4) {
    animation-delay: 0.2s;
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure proper stacking */
.language-dropdown {
    z-index: 1001;
}

/* Hover effect for the toggle button */
.language-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 99, 65, 0.1);
    border-radius: 0.375rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.language-toggle:hover::before {
    opacity: 1;
}

/* Focus styles for accessibility */
.language-toggle:focus,
.language-option:focus {
    outline: 2px solid var(--medium-brown);
    outline-offset: 2px;
}
