:root {
    --africa-red: #E74C3C;
    --africa-gold: #F39C12;
    --africa-green: #27AE60;
    --sahara-sand: #D4A574;
    --savanna-orange: #E67E22;
    --jungle-green: #16A085;
    --dark: #1a1a1a;
    --grey: #6B7280;
    --light-grey: #F9FAFB;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(231, 76, 60, 0.9) 0%, rgba(243, 156, 18, 0.9) 50%, rgba(39, 174, 96, 0.9) 100%),
        repeating-linear-gradient(
            -12deg,
            rgba(255, 255, 255, 0.06) 0,
            rgba(255, 255, 255, 0.06) 1px,
            transparent 1px,
            transparent 14px
        );
    background-size: cover, auto;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '🌍';
    position: absolute;
    font-size: min(500px, 90vw);
    opacity: 0.06;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out;
}

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

.hero-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 36rem;
    margin-inline: auto;
}

.hero-form-preview {
    list-style: none;
    text-align: left;
    margin: 0 0 1.5rem;
    padding: 0;
}

.hero-form-preview li {
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    color: var(--dark);
}

.hero-form-preview li::before {
    content: '→ ';
    color: var(--caribbean-red);
    font-weight: 600;
}

.hero-form-preview .text-muted {
    color: var(--grey);
    font-weight: 400;
}

.trust-line-checks {
    font-size: 0.88rem;
    line-height: 1.5;
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta-box {
    background: var(--white);
    color: var(--dark);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.hero-cta-box .subtitle-box {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 2rem;
}


.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
}

.hero-cta-box {
    background: var(--white);
    color: var(--dark);
    padding: 2.5rem 3rem;
    border-radius: 20px;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.hero-cta-box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.hero-cta-box .subtitle-box {
    font-size: 1rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--africa-red) 0%, var(--africa-gold) 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
}

.trust-line {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--grey);
}

.trust-line strong {
    color: var(--dark);
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0.5rem;
}

.rating::before {
    content: '⭐';
}

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

section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dj-showcase {
    background: var(--white);
}

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

.dj-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--africa-gold);
}

.dj-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.dj-info {
    padding: 1.8rem;
}

.dj-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.dj-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

.specialist-badge {
    background: var(--africa-gold);
    color: var(--dark);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--africa-green);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.verified::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: var(--africa-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--africa-gold);
    font-size: 1.1rem;
}

.rating-score {
    font-weight: 600;
    color: var(--dark);
}

.specialty {
    display: inline-block;
    background: var(--light-grey);
    color: var(--grey);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.why-compare {
    background: var(--light-grey);
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

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

.feature-card p {
    color: var(--grey);
    line-height: 1.7;
}

.regions {
    background: linear-gradient(135deg, var(--africa-red) 0%, var(--savanna-orange) 100%);
    color: var(--white);
}

.regions .section-title,
.regions .section-subtitle {
    color: var(--white);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.region-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--dark);
}

.region-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.flag-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.region-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--africa-red);
}

.region-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.music-styles {
    margin-top: 0.8rem;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--africa-gold);
    font-weight: 600;
}

.styles {
    background: var(--white);
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.style-card {
    background: linear-gradient(135deg, #FFF9E6 0%, #F5E6D3 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--africa-gold);
    transition: all 0.3s ease;
}

.style-card:hover {
    transform: translateX(5px);
    border-left-color: var(--africa-red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.style-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.style-origin {
    font-size: 0.85rem;
    color: var(--grey);
    font-style: italic;
    margin-bottom: 0.8rem;
}

.style-description {
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.6;
}

.faq {
    background: var(--light-grey);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    border-color: var(--africa-gold);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    color: var(--africa-red);
    transition: transform 0.3s ease;
    font-weight: 300;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--grey);
}

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

.final-cta {
    background: linear-gradient(135deg, var(--jungle-green) 0%, var(--africa-green) 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 2rem;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button-white {
    background: var(--white);
    color: var(--africa-red);
}

.cta-button-white:hover {
    background: var(--africa-gold);
    color: var(--dark);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--africa-gold);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--africa-gold);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Signature destinations (remplace le bloc silo technique) */
.destinations-signature {
    background: linear-gradient(180deg, #fffdf8 0%, #faf6f0 100%);
    border-top: 1px solid rgba(212, 165, 116, 0.35);
    border-bottom: 1px solid rgba(212, 165, 116, 0.35);
}

.destinations-signature .container {
    max-width: 920px;
}

.destinations-signature-lede {
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.75;
    text-align: center;
    margin: 0 auto 2.25rem;
    max-width: 38rem;
}

.destinations-signature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.destinations-signature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 1.35rem;
    text-align: center;
    border: 1px solid rgba(231, 76, 60, 0.15);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.destinations-signature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(231, 76, 60, 0.12);
    border-color: var(--africa-gold);
}

.destinations-signature-card .label {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.35rem;
}

.destinations-signature-card .hint {
    font-size: 0.82rem;
    color: var(--grey);
    line-height: 1.45;
}

@media (max-width: 768px) {
    .hero-cta-box {
        padding: 2rem 1.5rem;
    }

    section {
        padding: 3rem 0;
    }
}

/* Tarifs */
.pricing-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.pricing-card {
    background: var(--light-grey);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card--featured {
    border: 2px solid var(--africa-gold);
    box-shadow: 0 8px 32px rgba(200, 16, 46, 0.12);
    transform: scale(1.02);
}

.pricing-card__popular {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--africa-red);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pricing-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
}

.pricing-card__subtitle {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-card__price {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.pricing-card__rating {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.pricing-card__reviews {
    color: var(--grey);
    font-weight: 400;
}

.pricing-card__label {
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.pricing-card ul li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
}

.pricing-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--africa-green);
    font-weight: 700;
}

.pricing-badge {
    display: inline-block;
    background: rgba(200, 16, 46, 0.08);
    color: var(--africa-red);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.cta-button-small {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
}

.pricing-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--grey);
    font-style: italic;
}

/* Échelle mariage */
.wedding-scale {
    padding: 4rem 0;
    background: var(--sahara-sand);
}

.wedding-scale__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.wedding-scale-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.wedding-scale-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--africa-red);
}

.wedding-scale-card ul {
    list-style: none;
    margin-top: 0.75rem;
}

.wedding-scale-card ul li {
    font-size: 0.88rem;
    padding: 0.3rem 0;
    color: var(--grey);
}

.island-card__subtitle {
    font-weight: 600;
    color: var(--africa-red);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.island-card__cta {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--jungle-green);
    text-decoration: none;
}

.island-card__cta:hover {
    color: var(--africa-red);
    text-decoration: underline;
}

.reception-coverage {
    padding: 4rem 0;
    background: var(--white);
    text-align: center;
}

.reception-coverage__lead {
    max-width: 42rem;
    margin: 0 auto 1.5rem;
    color: var(--grey);
    line-height: 1.7;
}

.reception-coverage__zones {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.reception-coverage__zones li {
    background: var(--light-grey);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
}

.package-options {
    padding: 4rem 0;
    background: var(--light-grey);
}

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

.package-option-card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.package-option-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.package-option-card ul {
    list-style: none;
    margin-top: 1rem;
}

.package-option-card ul li {
    padding: 0.35rem 0;
    font-size: 0.9rem;
}

.package-options__cta-wrap {
    text-align: center;
}

.musical-balance {
    padding: 4rem 0;
    background: var(--white);
}

.musical-balance__intro {
    max-width: 48rem;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--grey);
    line-height: 1.7;
}

.musical-balance__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.musical-balance__grid article {
    background: var(--light-grey);
    border-radius: 1rem;
    padding: 1.5rem;
    border-left: 4px solid var(--africa-gold);
}

.musical-balance__grid h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.testimonials-section {
    padding: 4rem 0;
    background: var(--sahara-sand);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card__meta {
    font-size: 0.82rem;
    color: var(--grey);
    margin-bottom: 0.75rem;
}

.final-cta__lead {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.final-cta__reassurance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.final-cta__reassurance strong {
    display: block;
    margin-bottom: 0.25rem;
}

.final-cta__reassurance span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-button-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.final-cta__footnote {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    opacity: 0.85;
}

.footer-content--4col {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.footer-hours {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-cta-box {
        padding: 2rem 1.5rem;
    }

    .pricing-card--featured {
        transform: none;
    }

    .music-materials-grid {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 2rem;
    }

    section {
        padding: 3rem 0;
    }
}
