/* ============================================
   SECTION PRÉSENTATION DE L'AGENCE - ALÆN DESIGN
   Design minimaliste ultra-premium avec fond blanc
   ============================================ */

.agency-intro {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    cursor: default !important;
}

/* Supprimer le curseur texte sur tous les éléments de cette section */
.agency-intro *, .agency-intro *::before, .agency-intro *::after {
    cursor: default !important;
}

/* Garder le curseur pointer seulement pour les éléments cliquables */
.agency-intro .btn {
    cursor: pointer !important;
}

/* Pattern d'arrière-plan subtil */
.agency-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(59, 28, 66, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    z-index: 1;
}

/* Container principal - layout premium */
.agency-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   PARTIE TEXTE - CÔTÉ GAUCHE (MINIMALISTE)
   ============================================ */

.agency-text {
    padding-right: 1rem;
    animation: fadeInLeft 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    max-width: 90%;
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-30px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Header de section ultra-premium */
.section-header {
    margin-bottom: 3rem;
    position: relative;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b1c42;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background: #D4AF37;
    transform: translateY(-50%);
    animation: subtitleLineExpand 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes subtitleLineExpand {
    0% { width: 0; opacity: 0; }
    100% { width: 2rem; opacity: 1; }
}

.section-title {
    font-family: 'Forum', serif;
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.section-title .company-name {
    color: #D4AF37;
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline;
}

.section-title .company-description {
    color: #3b1c42;
    font-size: 2.4rem;
    font-weight: 400;
    font-style: italic;
    position: relative;
    display: inline;
}



/* Keywords ultra-stylés */
/* Studio Points - Design ultra-moderne et magnifique */
.studio-points {
    margin: 3rem 0;
    animation: fadeIn 1s ease-out 0.5s both;
    position: relative;
}

.studio-points::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 28, 66, 0.02) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10px, -15px) rotate(1deg); }
    66% { transform: translate(10px, -10px) rotate(-1deg); }
}

.point-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.95) 0%, 
            rgba(252, 252, 252, 0.9) 50%, 
            rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 8px 16px rgba(212, 175, 55, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(0);
}

.point-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(255, 255, 255, 0) 50%, 
        rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.point-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, 
        #D4AF37 0%, 
        #F4E7B8 25%, 
        #D4AF37 50%, 
        #F4E7B8 75%, 
        #D4AF37 100%);
    transform: scaleY(0);
    transition: transform 0.6s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.point-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #D4AF37 0%, #F4E7B8 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.point-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(212, 175, 55, 0.15),
        0 0 30px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.point-item:hover::before {
    opacity: 1;
}

.point-item:hover::after {
    transform: scaleY(1);
}

.point-bullet {
    font-size: 1.8rem;
    margin-right: 1.5rem;
    margin-top: 0.2rem;
    color: #D4AF37;
    text-shadow: 
        0 0 15px rgba(212, 175, 55, 0.5),
        0 0 30px rgba(212, 175, 55, 0.3);
    animation: bulletPulse 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.point-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: bulletGlow 4s ease-in-out infinite;
}

@keyframes bulletPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg); 
        opacity: 0.9; 
    }
    50% { 
        transform: scale(1.2) rotate(5deg); 
        opacity: 1; 
    }
}

@keyframes bulletGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.3; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.5); 
        opacity: 0.6; 
    }
}

.point-content {
    flex: 1;
}

.point-content h3 {
    font-family: 'Forum', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #3b1c42;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    position: relative;
    background: linear-gradient(135deg, #3b1c42 0%, #4e2a57 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.point-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #F4E7B8, #D4AF37);
    background-size: 200% 100%;
    transition: width 0.6s ease;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.point-item:hover .point-content h3 {
    background: linear-gradient(135deg, #D4AF37 0%, #F4E7B8 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.point-item:hover .point-content h3::after {
    width: 100%;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.point-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    transition: all 0.4s ease;
    font-weight: 400;
    position: relative;
}

.point-item:hover .point-content p {
    color: #3b1c42;
    opacity: 1;
    transform: translateX(3px);
    font-weight: 500;
}

/* Effet de particules dorées autour des points */
.point-item::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.point-item:hover::before {
    opacity: 1;
    animation: particleFloat 3s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-5px, -10px) scale(1.1); }
}

/* Animation d'apparition en cascade pour les points */
.point-item:nth-child(1) { animation: pointSlideIn 1s ease-out 0.6s both; }
.point-item:nth-child(2) { animation: pointSlideIn 1s ease-out 0.8s both; }
.point-item:nth-child(3) { animation: pointSlideIn 1s ease-out 1.0s both; }
.point-item:nth-child(4) { animation: pointSlideIn 1s ease-out 1.2s both; }
.point-item:nth-child(5) { animation: pointSlideIn 1s ease-out 1.4s both; }

@keyframes pointSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px) scale(0.9);
    }
    50% {
        opacity: 0.7;
        transform: translateX(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Effet de brillance sur les cartes */
.point-item::after {
    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.8s ease;
    z-index: 2;
}

.point-item:hover::after {
    left: 100%;
}

/* Keywords container - Style moderne et minimaliste (ancien style gardé pour référence) */
.keywords-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.keyword-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.keyword-item:hover {
    transform: translateY(-10px);
}

.keyword-icon {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 1rem;
    box-shadow: 
        0 15px 35px rgba(59, 28, 66, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.keyword-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #3b1c42, #D4AF37);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.keyword-item:hover .keyword-icon {
    color: #ffffff;
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        0 20px 40px rgba(59, 28, 66, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.keyword-item:hover .keyword-icon::before {
    opacity: 1;
    transform: scale(1);
}

.keyword-text {
    font-family: 'Forum', serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #3b1c42;
    position: relative;
}

.keyword-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transform: translateX(-50%);
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.keyword-item:hover .keyword-text::after {
    width: 80%;
}

/* Tagline minimaliste et premium */
.agency-tagline {
    margin: 3rem 0;
    text-align: center;
    position: relative;
    padding: 2rem 0;
    animation: fadeIn 1s ease-out 0.8s both;
}

.agency-tagline::before,
.agency-tagline::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 100px;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
    transform: translateX(-50%);
}

.agency-tagline::before {
    top: 0;
    animation: lineExpand 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.agency-tagline::after {
    bottom: 0;
    animation: lineExpand 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards 0.3s;
}

@keyframes lineExpand {
    0% { width: 0; }
    100% { width: 100px; }
}

.agency-tagline p {
    font-family: 'Forum', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #3b1c42;
    line-height: 1.4;
}

/* Bouton CTA ultra-premium */
.agency-cta {
    margin-top: 3rem;
    text-align: center;
    animation: fadeIn 1s ease-out 1s both;
}

.agency-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 16px 32px;
    background: linear-gradient(135deg, #3b1c42, #4e2a57);
    border: none;
    border-radius: 50px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 
        0 15px 35px rgba(59, 28, 66, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.05);
}

.agency-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.agency-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(59, 28, 66, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #4e2a57, #5f3568);
}

.agency-cta .btn:hover::before {
    left: 100%;
}

.agency-cta .btn i {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.agency-cta .btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   PARTIE VISUELLE - CÔTÉ DROIT (IMAGE STYLÉE)
   ============================================ */

.agency-visual {
    position: relative;
    animation: fadeInRight 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeInRight {
    0% { opacity: 0; transform: translateX(30px); }
    100% { opacity: 1; transform: translateX(0); }
}

.image-showcase {
    position: relative;
    width: 100%;
    padding-bottom: 110%; /* Ratio plus carré pour plus d'impact */
    overflow: hidden;
}

/* Image principale ultra-premium */
.main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-showcase:hover .main-image img {
    transform: scale(1.05);
}

/* Overlay subtil pour améliorer la lisibilité */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.05) 50%,
            rgba(0, 0, 0, 0.1) 100%
        );
    z-index: 1;
}

/* Éléments flottants ultra-stylés */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.element-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.element-2 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: -30px;
    animation-delay: 5s;
}

.element-3 {
    width: 70px;
    height: 70px;
    top: 60%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    33% { 
        transform: translateY(-20px) rotate(5deg); 
    }
    66% { 
        transform: translateY(-10px) rotate(-5deg); 
    }
}

/* Cadre élégant autour de l'image */
.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 3;
    pointer-events: none;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-top: 3px solid #D4AF37;
    border-left: 3px solid #D4AF37;
}

.image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-bottom: 3px solid #D4AF37;
    border-right: 3px solid #D4AF37;
}

/* Signature de la marque - Masquée */
.brand-signature {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN ULTRA-PREMIUM
   ============================================ */

@media (max-width: 1200px) {
    .section-title .company-name {
        font-size: 2.6rem;
    }
    
    .section-title .company-description {
        font-size: 2.2rem;
    }
    
    .agency-tagline p {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .agency-intro {
        padding: 80px 0;
    }
    
    .agency-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .agency-text {
        padding-right: 0;
        text-align: center;
        order: 2;
        max-width: 100%;
    }
    
    .agency-visual {
        order: 1;
    }
    
    .section-subtitle {
        padding-left: 0;
    }
    
    .section-subtitle::before {
        display: none;
    }
    
    .keywords-container {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .studio-points {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .point-item {
        padding: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .point-content h3 {
        font-size: 1.3rem;
    }
    
    .image-showcase {
        max-width: 700px;
        margin: 0 auto;
        padding-bottom: 85%; /* Ratio plus carré pour tablette */
    }
}

@media (max-width: 768px) {
    .agency-intro {
        padding: 60px 0;
    }
    
    .section-title .company-name {
        font-size: 2rem;
    }
    
    .section-title .company-description {
        font-size: 1.7rem;
    }
    
    .agency-tagline p {
        font-size: 1.4rem;
    }
    
    .keywords-container {
        gap: 1.5rem;
    }
    
    .studio-points {
        margin: 1.5rem 0;
    }
    
    .point-item {
        padding: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .point-content h3 {
        font-size: 1.1rem;
    }
    
    .point-content p {
        font-size: 0.95rem;
    }
    
    .point-bullet {
        font-size: 1.3rem;
        margin-right: 1.2rem;
    }
    
    .keyword-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .keyword-text {
        font-size: 1.1rem;
    }
    
    .brand-signature {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title .company-name {
        font-size: 1.6rem;
    }
    
    .section-title .company-description {
        font-size: 1.4rem;
    }
    
    .agency-tagline p {
        font-size: 1.2rem;
    }
    
    .keywords-container {
        grid-template-columns: 1fr;
        max-width: 250px;
    }
    
    .studio-points {
        margin: 1rem 0;
    }
    
    .point-item {
        padding: 0.8rem;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }
    
    .point-content h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .point-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .point-bullet {
        font-size: 1.2rem;
        margin-right: 1rem;
        margin-top: 0.1rem;
    }
    
    .image-frame {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .brand-signature {
        display: none;
    }
}