/* ============================================
   ALEX BLUMA - COMPONENTS STYLESHEET
   Styles spécifiques pour composants complexes
   ============================================ */

/* ============================================
   TESTIMONIALS HOME SECTION
   ============================================ */
.testimonials-home {
    padding: var(--spacing-xl, 6rem) 0;
    background: var(--deep-black, #0A0A0A);
}

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

.testimonial-card-home {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(255, 107, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.testimonial-card-home::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-orange, #FF6B00) 0%, 
        var(--primary-orange-light, #FF8533) 100%);
    border-radius: 0 0 14px 14px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.testimonial-card-home:hover {
    border-color: var(--primary-orange, #FF6B00);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
}

.testimonial-card-home:hover::after {
    transform: scaleX(1);
}

.testimonial-quote-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.testimonial-quote-icon i {
    font-size: 1.25rem;
    color: var(--primary-orange, #FF6B00);
}

.testimonial-text-home {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-gray, #A1A1A1);
    margin-bottom: auto;
    font-style: italic;
}

.testimonial-author-home {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 107, 0, 0.2);
}

.author-name-home {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pure-white, #FFFFFF);
    margin-bottom: 0.25rem;
}

.author-role-home {
    font-size: 0.9rem;
    color: var(--primary-orange, #FF6B00);
    font-weight: 500;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .testimonial-card-home {
        padding: 1.5rem;
        min-height: auto;
    }
}

/* ============================================
   ABOUT INTRO SECTION (HOME)
   ============================================ */
.about-intro {
    padding: var(--spacing-xl, 6rem) 0;
    background: var(--deep-black, #0A0A0A);
    position: relative;
    overflow: hidden;
}

.about-intro-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-circle {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 10;
    border: 4px solid var(--primary-orange, #FF6B00);
    box-shadow: 0 10px 40px rgba(255, 107, 0, 0.3);
}

.profile-orbit {
    position: absolute;
    border: 2px solid var(--primary-orange, #FF6B00);
    border-radius: 50%;
    opacity: 0.3;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    animation: rotate 25s linear infinite reverse;
}

.orbit-3 {
    width: 360px;
    height: 360px;
    animation: rotate 30s linear infinite;
}

.profile-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary-orange, #FF6B00);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.6);
}

.dot-1 {
    top: 20px;
    right: 80px;
    animation: pulse 2s ease-in-out infinite;
}

.dot-2 {
    bottom: 40px;
    left: 30px;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.dot-3 {
    top: 50%;
    right: 20px;
    width: 12px;
    height: 12px;
    animation: pulse 2s ease-in-out infinite 1s;
}

.dot-4 {
    top: 80px;
    left: 40px;
    width: 20px;
    height: 20px;
    animation: pulse 2s ease-in-out infinite 1.5s;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }
}

.about-intro-content {
    max-width: 650px;
}

.about-intro-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-orange, #FF6B00);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.about-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray, #A1A1A1);
    margin-bottom: 1.5rem;
}

.about-intro-text strong {
    color: var(--primary-orange, #FF6B00);
    font-weight: 700;
}

.about-intro-cta {
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 968px) {
    .about-intro-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-intro-visual {
        justify-content: center;
    }
    
    .about-intro-content {
        max-width: 100%;
    }
    
    .about-intro-cta {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .profile-circle {
        width: 250px;
        height: 250px;
    }
    
    .profile-photo {
        width: 200px;
        height: 200px;
    }
    
    .orbit-1 {
        width: 230px;
        height: 230px;
    }
    
    .orbit-2 {
        width: 270px;
        height: 270px;
    }
    
    .orbit-3 {
        width: 310px;
        height: 310px;
    }
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    background: var(--dark-gray, #1A1A1A);
}

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

.faq-item {
    background: var(--charcoal, #141414);
    border: 2px solid var(--border-gray, #2A2A2A);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-orange, #FF6B00);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: transparent;
    color: var(--pure-white, #FFFFFF);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange, #FF6B00);
}

.faq-question i {
    font-size: 1rem;
    transition: 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--light-gray, #A1A1A1);
    line-height: 1.7;
}

/* ============================================
   FORMS
   ============================================ */
.contact-form, .newsletter-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--pure-white, #FFFFFF);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--charcoal, #141414);
    border: 2px solid var(--border-gray, #2A2A2A);
    border-radius: 8px;
    color: var(--pure-white, #FFFFFF);
    font-family: var(--font-main, 'Inter', sans-serif);
    font-size: 1rem;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange, #FF6B00);
    background: rgba(255, 107, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    margin-top: 2rem;
}

.form-message {
    margin-top: 1rem;
}

/* ============================================
   CONTACT PAGE LAYOUT
   ============================================ */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-container {
    background: var(--charcoal, #141414);
    border: 2px solid var(--border-gray, #2A2A2A);
    border-radius: 16px;
    padding: 2rem;
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--pure-white, #FFFFFF);
}

.form-description {
    color: var(--light-gray, #A1A1A1);
    margin-bottom: 2rem;
}

.contact-info-container {
    position: sticky;
    top: 100px;
}

.contact-info-box,
.social-box {
    background: var(--charcoal, #141414);
    border: 2px solid var(--border-gray, #2A2A2A);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-box h3,
.social-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-orange, #FF6B00);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.25rem;
    color: var(--primary-orange, #FF6B00);
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--pure-white, #FFFFFF);
}

.info-content p,
.info-content a {
    font-size: 0.95rem;
    color: var(--light-gray, #A1A1A1);
    line-height: 1.6;
}

.info-content a:hover {
    color: var(--primary-orange, #FF6B00);
}

.info-note {
    font-size: 0.85rem !important;
    font-style: italic;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid var(--border-gray, #2A2A2A);
    border-radius: 8px;
    transition: 0.3s ease;
    color: var(--pure-white, #FFFFFF);
}

.social-link:hover {
    background: rgba(255, 107, 0, 0.1);
    border-color: var(--primary-orange, #FF6B00);
    transform: translateX(5px);
}

.social-link i {
    font-size: 1.25rem;
    color: var(--primary-orange, #FF6B00);
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 107, 0, 0.05);
    border-left: 4px solid var(--primary-orange, #FF6B00);
    border-radius: 8px;
}

.response-time i {
    font-size: 1.25rem;
    color: var(--primary-orange, #FF6B00);
}

.response-time p {
    font-size: 0.9rem;
    color: var(--light-gray, #A1A1A1);
    margin: 0;
}

/* ============================================
   TIMELINE (À PROPOS)
   ============================================ */
.timeline-wrapper {
    position: relative;
    padding-left: 3rem;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-orange, #FF6B00), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary-orange, #FF6B00);
    border: 3px solid var(--deep-black, #0A0A0A);
    border-radius: 50%;
}

.timeline-year {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-orange, #FF6B00);
    margin-bottom: 0.75rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--pure-white, #FFFFFF);
}

.timeline-description {
    color: var(--light-gray, #A1A1A1);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.timeline-highlights {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.timeline-highlights li {
    margin-bottom: 0.5rem;
    color: var(--light-gray, #A1A1A1);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.timeline-highlights li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange, #FF6B00);
    font-weight: 700;
}

/* ============================================
   PORTFOLIO & NEWSLETTER BOXES
   ============================================ */
.portfolio-box,
.newsletter-box {
    background: var(--charcoal, #141414);
    border: 2px solid var(--border-gray, #2A2A2A);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.portfolio-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange, #FF6B00), var(--primary-orange-dark, #E65C00));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--pure-white, #FFFFFF);
    margin: 0 auto 2rem;
}

.portfolio-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.portfolio-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--light-gray, #A1A1A1);
    margin-bottom: 2rem;
}

.portfolio-content-list {
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 107, 0, 0.05);
    border-radius: 12px;
}

.portfolio-content-list h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-orange, #FF6B00);
}

.portfolio-content-list ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.portfolio-content-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--light-gray, #A1A1A1);
}

.portfolio-content-list i {
    color: var(--primary-orange, #FF6B00);
    margin-top: 0.25rem;
}

.portfolio-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--light-gray, #A1A1A1);
}

.newsletter-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    text-align: left;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-gray, #A1A1A1);
    margin-bottom: 1rem;
}

.newsletter-frequency {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary-orange, #FF6B00);
}

.newsletter-privacy {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--light-gray, #A1A1A1);
}

.newsletter-privacy a {
    color: var(--primary-orange, #FF6B00);
    text-decoration: underline;
}

/* ============================================
   COMING SOON SECTION
   ============================================ */
.coming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coming-card {
    background: var(--charcoal, #141414);
    border: 2px solid var(--border-gray, #2A2A2A);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: 0.3s ease;
}

.coming-card:hover {
    border-color: var(--primary-orange, #FF6B00);
    transform: translateY(-5px);
}

.coming-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-orange, #FF6B00);
    margin: 0 auto 1.5rem;
}

.coming-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.coming-description {
    color: var(--light-gray, #A1A1A1);
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info-container {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-wrapper {
        padding-left: 2rem;
    }
    
    .timeline-item::before {
        left: -2.5rem;
    }
}