/* ===================================
   SITE LAURENCE TRAINEAU-ROY
   CSS OPTIMISÉ - VERSION FINALE
   =================================== */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #5B21B6;
    --secondary: #059669;
    --accent: #DC2626;
    --text: #0F172A;
    --text-light: #475569;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: var(--text);
    background: #FFFFFF;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === TYPOGRAPHY === */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--text);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--text);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
}

p {
    font-size: 1.75rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.section-conclusion {
    text-align: center;
    font-size: 1.5rem;
    font-style: italic;
    margin: 3rem auto;
    max-width: 800px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 3rem;
    font-size: 1.75rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #4C1D95;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(91, 33, 182, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background: #047857;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.cta-center {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

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

/* === SECTIONS === */
section {
    padding: 6rem 0;
    position: relative;
}

/* === NAVIGATION === */
.nav {
    background: #FFFFFF;
    padding: 1.5rem 0;
    border-bottom: 2px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.logo-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.nav-menu a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--primary);
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #BFDBFE 0%, #93C5FD 100%);
    padding-top: 4rem;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature-icon {
    color: var(--secondary);
    font-size: 2rem;
}

/* PSYCHOLOGUE.NET - PAS DE CADRE */
.hero-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0;
}

.rating-logo {
    height: 40px;
    width: auto;
}

.rating-stars {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rating-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
}

.stars {
    font-size: 2rem;
    color: #FBBF24;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 100%;
    max-width: 500px;
    border-radius: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* === SYMPTOMS SECTION === */
.symptoms {
    background: linear-gradient(135deg, #A7F3D0 0%, #6EE7B7 100%);
}

.symptoms-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.symptom-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.symptom-icon {
    color: var(--secondary);
    font-size: 2rem;
    flex-shrink: 0;
    font-weight: 900;
}

.symptom-text {
    font-size: 1.75rem;
    line-height: 1.7;
}

.symptom-text strong {
    color: var(--text);
    font-weight: 700;
}

/* === TRANSFORMATION SECTION === */
.transformation {
    background: linear-gradient(135deg, #FDE047 0%, #FACC15 100%);
}

.comparison-grid {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 1.5rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.comparison-before,
.comparison-after {
    text-align: center;
}

.comparison-before p,
.comparison-after p {
    font-size: 2rem;
    color: var(--text);
    font-weight: 600;
}

.comparison-arrow {
    font-size: 4rem;
    color: var(--primary);
    font-weight: 900;
}

/* === APPROACH SECTION === */
.approach {
    background: linear-gradient(135deg, #DDD6FE 0%, #C4B5FD 100%);
}

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

.pillar {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pillar-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: block;
}

.pillar-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pillar-description {
    font-size: 1.5rem;
}

/* FORMATIONS - BARRE À GAUCHE */
.credentials {
    background: transparent;
    padding: 3rem 0 3rem 3rem;
    max-width: 1000px;
    margin: 3rem auto;
    border-left: 6px solid var(--primary);
}

.credentials-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.credentials-list {
    list-style: none;
}

.credentials-list li {
    font-size: 1.75rem;
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text);
}

.credentials-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 900;
}

/* === TRUST SECTION === */
.trust-section {
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

.trust-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-marquee {
    margin-bottom: 2rem;
}

.trust-track {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-logo {
    height: 100px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-rating {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
}

.trust-rating .stars {
    color: var(--secondary);
    font-size: 3rem;
}

/* === BENEFITS SECTION === */
.benefits {
    background: linear-gradient(135deg, #FED7AA 0%, #FDBA74 100%);
}

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

.benefits-photo {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.benefits-content h2 {
    text-align: left;
}

.benefits-list {
    list-style: none;
    margin: 2rem 0;
}

.benefits-list li {
    font-size: 1.75rem;
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-size: 2.5rem;
    font-weight: 900;
}

.benefits-projection {
    font-size: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
}

.benefits-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

/* === STEPS SECTION === */
.steps {
    background: linear-gradient(135deg, #A7F3D0 0%, #6EE7B7 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    align-items: center;
}

.step {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.step-number {
    background: var(--primary);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 900;
    margin: 0 auto 2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
}

.step-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.5rem;
}

.step-arrow {
    font-size: 4rem;
    color: var(--primary);
    font-weight: 900;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background: linear-gradient(135deg, #FBCFE8 0%, #F9A8D4 100%);
}

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

.testimonial-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.testimonial-stars {
    font-size: 1.75rem;
    color: #FBBF24;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* === PRICING SECTION === */
.pricing {
    background: linear-gradient(135deg, #93C5FD 0%, #60A5FA 100%);
}

.pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 2rem 0;
    scrollbar-width: thin;
}

.pricing-grid::-webkit-scrollbar {
    height: 8px;
}

.pricing-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.pricing-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 1.5rem;
    text-align: center;
    min-width: 320px;
    scroll-snap-align: start;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pricing-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-duration {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-description {
    font-size: 1.25rem;
}

/* === FAQ SECTION === */
.faq-section {
    background: linear-gradient(135deg, #DDD6FE 0%, #C4B5FD 100%);
}

.faq-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    border: 2px solid #FFFFFF;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: #F3F4F6;
    border: none;
    padding: 2rem;
    font-size: 1.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    transition: background 0.3s;
}

.faq-question:hover {
    background: #E5E7EB;
}

.faq-icon {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 2rem;
}

.faq-answer p {
    font-size: 1.5rem;
}

/* === CTA FINAL === */
.cta-final {
    background: linear-gradient(135deg, #FBCFE8 0%, #F9A8D4 100%);
}

/* === FOOTER === */
.footer {
    background: #0F172A;
    color: #F1F5F9;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.footer-subtitle,
.footer-tagline {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin: 0.5rem 0;
}

.footer-heading {
    font-size: 1.75rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin: 1rem 0;
}

.footer-menu a {
    font-size: 1.375rem;
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #FFFFFF;
}

.footer-info {
    font-size: 1.375rem;
    line-height: 1.8;
}

.footer-info a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
}

.footer-copyright {
    font-size: 1.25rem;
    color: #94A3B8;
    text-align: center;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 18px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    p, .symptom-text, .pillar-description, .testimonial-text {
        font-size: 1.25rem;
    }
    
    .comparison-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .comparison-before p, 
    .comparison-after p {
        font-size: 1.5rem;
    }
    
    .comparison-arrow {
        transform: rotate(90deg);
        font-size: 3rem;
    }
    
    .btn {
        font-size: 1.375rem;
        width: 100%;
    }
    
    .hero-cta,
    .cta-center,
    .cta-buttons,
    .benefits-cta {
        flex-direction: column;
    }
    
    .feature-item {
        font-size: 1.25rem;
    }
    
    .credentials-list li {
        font-size: 1.25rem;
    }
    
    .benefits-list li {
        font-size: 1.25rem;
    }
    
    .faq-question {
        font-size: 1.375rem;
        padding: 1.5rem;
    }
    
    .faq-answer p {
        font-size: 1.25rem;
    }
    
    .trust-logo {
        height: 80px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
}

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

.symptom-item,
.comparison-card,
.pillar,
.step,
.testimonial-card,
.pricing-card,
.faq-item {
    animation: fadeIn 0.6s ease-out;
}

/* ===================================
   CSS SECTION LOCALISATION
   Ajouté automatiquement
   =================================== */

/* === LOCATION SECTION === */
.location-section {
    background: var(--bg-violet-dilue);
    clip-path: polygon(
        0 8%, 5% 7%, 10% 9%, 15% 7%, 20% 8%, 25% 7%, 30% 9%, 35% 7%, 40% 8%,
        45% 7%, 50% 9%, 55% 7%, 60% 8%, 65% 7%, 70% 9%, 75% 7%, 80% 8%,
        85% 7%, 90% 9%, 95% 7%, 100% 8%, 100% 100%, 0 100%
    );
    padding-top: calc(3.5rem + 8vw);
    padding-bottom: calc(3.5rem + 3vw);
    margin-top: -8vw;
    filter: drop-shadow(0 -10px 20px rgba(0, 0, 0, 0.06));
    animation: waveFloat 6s ease-in-out infinite 3.5s;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin: 2rem 0;
}

.location-map {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.location-details {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.location-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.location-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.location-address {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.location-address strong {
    color: var(--primary);
    font-weight: 700;
}

.location-access {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.7;
}

.location-access strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.5rem;
}

.location-visio {
    display: flex;
}

.visio-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    width: 100%;
}

.visio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(91, 33, 182, 0.2);
}

.visio-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.visio-title {
    font-size: 1.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1rem;
}

.visio-description {
    font-size: 0.9375rem;
    color: var(--text);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.visio-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin: 1.5rem 0;
}

.visio-benefit {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-vert-dilue);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text);
}

.benefit-check {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.visio-platforms {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: var(--bg-jaune-dilue);
    border-radius: 0.75rem;
}

.visio-platforms-title {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0.75rem;
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: center;
}

.platform-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.visio-cta {
    text-align: center;
    margin-top: 1.75rem;
}

.visio-note {
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-light);
    font-style: italic;
}

.opening-hours {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.opening-title {
    text-align: center;
    font-size: 1.375rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hours-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--bg-violet-dilue);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: var(--bg-vert-dilue);
    transform: translateX(5px);
}

.day {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9375rem;
}

.time {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9375rem;
}

.hours-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 968px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    .location-section {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    .location-details {
        flex-direction: column;
        text-align: center;
    }
    .location-icon {
        margin: 0 auto;
    }
    .visio-card {
        padding: 1.5rem;
    }
    .opening-hours {
        padding: 1.5rem;
    }
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}