
/* ========================= */
/* VARIABLES SET 1 */
/* ========================= */
:root {
    --primary: #5a4332;
    --secondary: #b08968;
    --accent: #7fbf9f;

    --bg-light: #f9f6f2;
    --bg-section: #efe4d8;

    --white: #f7f2f2;
    --text: #2b2b2b;

    --font-main: "Segoe UI", sans-serif;

    --section-padding: 60px 20px;
    --container-width: 90%;

    --transition-flows: transform 0.25s ease, opacity 0.25s ease;

    --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 16px 35px rgba(0, 0, 0, 0.1);
}

/* BASE */
* {margin: 0;padding: 0;box-sizing: border-box;}
html, body {overflow-x: hidden;}

html {scroll-behavior: smooth;scroll-padding-top: 110px;}


body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

/* CONTAINER GLOBAL */
section {
    margin: 0;
    padding: 0;
    background-color: var(--bg-section);
}

/* TITRES */
h1 {font-size: 2.5rem;margin-bottom: 20px;}
h2 {font-size: 2rem;margin-bottom: 20px;color: var(--secondary-color);}
p {margin-bottom: 15px;}
a {text-decoration: none; color: inherit;}

/* =========================
   SECTIONS
========================= */
.about-section {
    background: var(--bg-section);
    min-height: 70vh;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pricing-section {
    background: var(--bg-light);
    min-height: 60vh;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.content-box {
    width: 100%;
    max-width: 750px;
    background: var(--white);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.content-box:hover {
    transform: translateY(-6px);
}

.content-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

/* =========================
   BANDE SERVICES
========================= */
.services-marquee {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    padding: 8px 0;
}

.services-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: scrollServices 24s linear infinite;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}

/* icone gen */
.service-item::before {
    content: "";
    width: 22px;
    height: 22px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

/* icones */
.paw-icon::before {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><g fill='%236b4f3a'><circle cx='6' cy='8' r='2'/><circle cx='18' cy='8' r='2'/><circle cx='10' cy='6' r='2'/><circle cx='14' cy='6' r='2'/><ellipse cx='12' cy='15' rx='5' ry='4'/></g></svg>");
}

.dog-icon::before {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path fill='%236b4f3a' d='M5 13c0-3 2-5 5-5h3c3 0 6 2 6 5s-3 6-7 6h-1c-4 0-6-3-6-6z'/></svg>");
}

.target-icon::before {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><circle cx='12' cy='12' r='9' fill='%236b4f3a'/><circle cx='12' cy='12' r='5' fill='white'/><circle cx='12' cy='12' r='2' fill='%236b4f3a'/></svg>");
}

.home-icon::before {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path fill='%236b4f3a' d='M12 4l8 7h-2v8h-4v-5H10v5H6v-8H4z'/></svg>");
}

.lightning-icon::before {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path fill='%236b4f3a' d='M13 2L6 13h5l-1 9 8-12h-5z'/></svg>");
}

.leash-icon::before {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M3 14c4-6 8-6 12 0s6 6 6 2' fill='none' stroke='%236b4f3a' stroke-width='2' stroke-linecap='round'/></svg>");
}

.ball-icon::before {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><circle cx='12' cy='12' r='8' fill='%236b4f3a'/><path d='M12 4a8 8 0 0 0 0 16M4 12h16' stroke='white' stroke-width='1.5' fill='none'/></svg>");
}

.chat-icon::before {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path fill='%236b4f3a' d='M4 5h16v10H9l-5 4v-4H4z'/></svg>");
}

@keyframes scrollServices {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


.legal-content p {
    margin: 10px 0;
    padding: 10px 12px;
    background: rgba(140, 191, 159, 0.08);
    border-left: 3px solid #8cbf9f;
    border-radius: 6px;
}

.legal-content strong {
    color: var(--white);
    font-weight: 600;
}

.contact-container h2::after,
.reviews-section h2::after,
#carousel h2::after{
    content: "";
    width: 40%;
    height: 3px;
    background: var(--accent);
    display: block;
    margin: 12px auto 0;
    border-radius: 999px;

    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-container h2:hover::after,
.reviews-section h2:hover::after,
#carousel h2:hover::after {
    width: 55%;
}