/* ============================================
   MURMURES DE VELOURS - STYLES ROCOCO
   ============================================ */

:root {
    --rose-pale: #f8e4e8;
    --rose-poudre: #edc4ce;
    --rose-profond: #c77b8b;
    --bordeaux: #722f37;
    --bordeaux-sombre: #4a1c22;
    --or: #d4a843;
    --or-clair: #f0d890;
    --or-brillant: #ffd700;
    --creme: #fdf8f5;
    --noir-doux: #2a1f1f;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: var(--creme);
    color: var(--bordeaux-sombre);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.8;
}

/* Texture de fond */
.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 1000;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: linear-gradient(180deg, rgba(74, 28, 34, 0.98) 0%, rgba(74, 28, 34, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--or);
    padding: 0.8rem 2rem;
}

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

.nav-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: var(--or-clair);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-logo span {
    font-style: italic;
    font-weight: 300;
}

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

.nav-links a {
    color: var(--rose-pale);
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--or);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--or-clair);
}

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

.nav-cta {
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    color: var(--bordeaux-sombre) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    color: var(--bordeaux-sombre) !important;
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--or);
    transition: all 0.3s ease;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 400;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--bordeaux);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bordeaux);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--bordeaux);
    margin-bottom: 1rem;
}

p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

a {
    color: var(--or);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--or-brillant);
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(199, 123, 139, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, var(--rose-pale) 0%, var(--creme) 70%);
    text-align: center;
}

.hero-home {
    min-height: 100vh;
}

.hero-frame {
    position: absolute;
    top: 80px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--or);
    border-radius: 30px;
    pointer-events: none;
}

.hero-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--or-clair);
    border-radius: 25px;
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 span {
    font-style: italic;
    color: var(--or);
}

.hero .tagline {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--rose-profond);
    margin-top: 1rem;
    letter-spacing: 0.15em;
}

/* Logo ornemental */
.logo-ornament {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    animation: gentlePulse 4s ease-in-out infinite;
}

@keyframes gentlePulse {
    0%, 100% { 
        filter: drop-shadow(0 0 10px rgba(212, 168, 67, 0.3));
    }
    50% { 
        filter: drop-shadow(0 0 25px rgba(212, 168, 67, 0.6));
    }
}

/* Séparateur ornemental */
.divider {
    width: 250px;
    height: 30px;
    margin: 1.5rem auto;
}

/* ============================================
   PHONE CTA
   ============================================ */
.phone-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.phone-label {
    font-size: 0.95rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bordeaux);
    margin-bottom: 0.5rem;
}

.phone-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    color: var(--or);
    text-shadow: 
        1px 1px 0 var(--bordeaux),
        2px 2px 10px rgba(212, 168, 67, 0.3);
    letter-spacing: 0.1em;
    transition: all 0.4s ease;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.phone-number:hover {
    text-shadow: 
        1px 1px 0 var(--bordeaux),
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(212, 168, 67, 0.4);
    transform: scale(1.05);
    color: var(--or-brillant);
}

.price-info {
    font-size: 0.9rem;
    color: var(--rose-profond);
    margin-top: 0.8rem;
    font-style: italic;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 5rem 2rem;
    position: relative;
}

.section-dark {
    background: 
        linear-gradient(135deg, var(--bordeaux-sombre) 0%, var(--bordeaux) 50%, var(--bordeaux-sombre) 100%);
    color: var(--rose-pale);
}

.section-dark h2, .section-dark h3 {
    color: var(--or-clair);
}

.section-dark p {
    color: var(--rose-pale);
}

.section-light {
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(237, 196, 206, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
        var(--creme);
}

.section-rose {
    background: 
        linear-gradient(135deg, var(--rose-pale) 0%, var(--rose-poudre) 100%);
}

.section-rose h2, .section-rose h3 {
    color: var(--bordeaux);
}

.section-rose p {
    color: var(--bordeaux-sombre);
}

.section-rose .faq-item {
    background: #ffffff;
}

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

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
    margin: 1rem auto 0;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.content-block {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: rgba(255,255,255,0.6);
    border-radius: 15px;
    border-left: 4px solid var(--or);
}

.content-block.reverse {
    border-left: none;
    border-right: 4px solid var(--or);
}

.content-text h3 {
    margin-bottom: 1.5rem;
    color: var(--bordeaux);
}

.content-text p {
    color: var(--bordeaux-sombre);
}

/* ============================================
   CARDS
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.card {
    background: #ffffff;
    border: 1px solid var(--or);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 40px rgba(114, 47, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--or), var(--or-brillant), var(--or));
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(114, 47, 55, 0.2),
        0 0 30px rgba(212, 168, 67, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.card h3 {
    color: var(--bordeaux);
    margin-bottom: 1rem;
}

.card p {
    color: var(--bordeaux-sombre);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* Cards dans sections sombres - TOUJOURS fond blanc pour lisibilité */
.section-dark .card {
    background: #ffffff;
}

.section-dark .card h3 {
    color: var(--bordeaux);
}

.section-dark .card p {
    color: var(--bordeaux-sombre);
}

/* Card link */
.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.card-link .card {
    height: 100%;
}

.card-link:hover .card h3 {
    color: var(--or);
}

/* ============================================
   HOSTESS CARDS
   ============================================ */
.hostess-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.hostess-card {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--or);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.hostess-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(212, 168, 67, 0.15);
    border-color: var(--or-clair);
}

.hostess-card .hostess-bg {
    display: none;
}

.hostess-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.hostess-icon {
    font-size: 1.3rem;
}

.hostess-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    color: var(--bordeaux);
    margin: 0;
}

.hostess-age {
    font-size: 0.8rem;
    color: var(--rose-profond);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.hostess-tagline {
    font-size: 0.95rem;
    color: var(--or);
    font-style: italic;
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.hostess-desc {
    font-size: 0.85rem;
    color: var(--bordeaux-sombre);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    flex-grow: 1;
}

.hostess-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.hostess-tag {
    background: var(--rose-pale);
    color: var(--bordeaux);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.hostess-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
    color: var(--bordeaux-sombre);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(212, 168, 67, 0.3);
    margin-top: auto;
    align-self: center;
}

.hostess-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.5);
}

.hostess-info {
    position: relative;
    padding: 0;
    z-index: 1;
}

/* Variante pour section sombre */
.section-dark .hostess-card {
    background: rgba(255, 255, 255, 0.95);
}

/* Responsive cartes profils */
@media (max-width: 768px) {
    .hostess-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .hostess-card {
        padding: 1.2rem;
        min-height: 280px;
    }
    
    .hostess-name {
        font-size: 1.2rem;
    }
    
    .hostess-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hostess-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hostess-card {
        padding: 1rem;
        min-height: auto;
    }
}

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
    text-align: center;
    padding: 5rem 2rem;
    background: 
        radial-gradient(ellipse at center, rgba(212, 168, 67, 0.15) 0%, transparent 70%),
        linear-gradient(180deg, var(--bordeaux) 0%, var(--bordeaux-sombre) 100%);
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--or-clair);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--rose-pale);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.3rem;
    color: var(--bordeaux-sombre);
    background: linear-gradient(135deg, var(--or-clair) 0%, var(--or) 50%, var(--or-clair) 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 
        0 5px 20px rgba(212, 168, 67, 0.4);
    position: relative;
    overflow: hidden;
}

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 40px rgba(212, 168, 67, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3);
    color: var(--bordeaux-sombre);
}

.cta-button:hover::before {
    left: 100%;
}

/* ============================================
   SEO CONTENT
   ============================================ */
.seo-content {
    padding: 4rem 2rem;
    background: var(--creme);
}

.seo-content .container {
    max-width: 900px;
}

.seo-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.seo-content h2:first-child {
    margin-top: 0;
}

.seo-content p {
    text-align: justify;
}

.seo-content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.seo-content li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--or);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--bordeaux);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 168, 67, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--or);
    transition: transform 0.3s ease;
}

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

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

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

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 1rem 2rem;
    background: rgba(74, 28, 34, 0.05);
    margin-top: 60px;
}

.breadcrumb-list {
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb-list li::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--rose-profond);
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list a {
    color: var(--bordeaux);
    text-decoration: none;
}

.breadcrumb-list a:hover {
    color: var(--or);
}

.breadcrumb-list li:last-child {
    color: var(--rose-profond);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--bordeaux-sombre);
    color: var(--rose-pale);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--or), transparent);
}

.footer-main {
    padding: 4rem 2rem 3rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    color: var(--or-clair);
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-links h4 {
    font-size: 1.1rem;
    color: var(--or);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

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

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--rose-pale);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--or-clair);
}

.footer-bottom {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(212, 168, 67, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-legal a {
    color: var(--or-clair);
    text-decoration: none;
    font-size: 0.85rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .content-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-block.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bordeaux-sombre);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-frame {
        top: 70px;
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ============================================
   BOUTON D'APPEL FLOTTANT (STICKY)
   ============================================ */

.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.floating-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-cta-btn.audiotel {
    background: linear-gradient(135deg, #d4a843 0%, #f0d890 100%);
    color: #4a1c22;
}

.floating-cta-btn.cb {
    background: linear-gradient(135deg, #722f37 0%, #c77b8b 100%);
    color: #fff;
}

.floating-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.floating-cta-btn .phone-icon {
    font-size: 1.1rem;
}

.floating-cta-btn .phone-number {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.floating-cta-btn .phone-price {
    font-size: 0.7rem;
    opacity: 0.9;
    font-weight: 400;
    background: rgba(0,0,0,0.15);
    padding: 2px 6px;
    border-radius: 10px;
}

/* Animation pulse */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(212,168,67,0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212,168,67,0.7);
    }
}

.floating-cta-btn.audiotel {
    animation: pulse-glow 2s ease-in-out infinite;
}

.floating-cta-btn.audiotel:hover {
    animation: none;
}

/* TABLET - 768px */
@media (max-width: 768px) {
    .floating-cta {
        bottom: 15px;
        right: 15px;
        gap: 6px;
        max-width: calc(100vw - 30px);
    }
    
    .floating-cta-btn {
        padding: 9px 14px;
        font-size: 0.85rem;
        gap: 6px;
    }
    
    .floating-cta-btn .phone-icon {
        font-size: 1rem;
    }
    
    .floating-cta-btn .phone-number {
        font-size: 0.85rem;
    }
    
    .floating-cta-btn .phone-price {
        font-size: 0.65rem;
    }
}

/* MOBILE - 480px */
@media (max-width: 480px) {
    .floating-cta {
        bottom: 10px;
        right: 10px;
        left: auto;
        gap: 5px;
        max-width: calc(100vw - 20px);
    }
    
    .floating-cta-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
        gap: 4px;
        border-radius: 20px;
    }
    
    .floating-cta-btn .phone-icon {
        font-size: 0.9rem;
    }
    
    .floating-cta-btn .phone-number {
        font-size: 0.75rem;
        letter-spacing: 0;
    }
    
    .floating-cta-btn .phone-price {
        display: none;
    }
}

/* PETIT MOBILE - 360px */
@media (max-width: 360px) {
    .floating-cta {
        bottom: 8px;
        right: 8px;
        gap: 4px;
    }
    
    .floating-cta-btn {
        padding: 6px 8px;
        font-size: 0.7rem;
        gap: 3px;
    }
    
    .floating-cta-btn .phone-icon {
        font-size: 0.85rem;
    }
    
    .floating-cta-btn .phone-number {
        font-size: 0.7rem;
    }
}

/* TRES PETIT MOBILE - 320px */
@media (max-width: 320px) {
    .floating-cta-btn {
        padding: 5px 7px;
        font-size: 0.65rem;
    }
    
    .floating-cta-btn .phone-icon {
        font-size: 0.8rem;
    }
    
    .floating-cta-btn .phone-number {
        font-size: 0.65rem;
    }
}

/* PAYSAGE PETIT ECRAN */
@media (max-height: 500px) and (orientation: landscape) {
    .floating-cta {
        bottom: 8px;
        right: 8px;
        flex-direction: row;
        gap: 6px;
    }
    
    .floating-cta-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    
    .floating-cta-btn .phone-price {
        display: none;
    }
}
