/**
 * CSS professionnel pour la page d'accueil Skitterskoon
 * À placer dans assets/css/home-pro.css
 */

 :root {
    --primary: #37726E;
    --primary-light: #488d88;
    --primary-dark: #2a5652;
    --secondary: #7EC7A8;
    --secondary-light: #9fd5be;
    --secondary-dark: #5eaa87;
    --accent: #F2FC32;
    --accent-light: #f7fd6f;
    --accent-dark: #e0ea20;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #212529;
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

/* Styles généraux */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

section.animate {
    animation: fadeInUp 0.8s ease both;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

.section-tagline {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.section-tagline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
}

.section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 3rem;
    color: var(--gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::after {
    height: 100%;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary-dark);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-accent {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--primary-dark);
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(3px);
}

/* REMOVED Hero Section styles from home.css - Should be handled by hero-section.css and home-optimized.css */

/* Philosophy Section */
.philosophy-section {
    background-color: var(--white);
    padding: 100px 0;
}

.philosophy-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.philosophy-content {
    flex: 1;
    max-width: 600px;
}

.philosophy-image {
    flex: 1;
    max-width: 500px;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.rounded-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.philosophy-heading {
    font-size: 1.75rem;
    margin: 1.5rem 0;
    color: var(--primary);
}

.philosophy-text {
    margin-bottom: 2rem;
}

.philosophy-features {
    margin-bottom: 2.5rem;
}

.philosophy-feature {
    display: flex;
    margin-bottom: 1.5rem;
}

.philosophy-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    background-color: var(--light-gray);
    color: var(--primary);
    flex-shrink: 0;
}

.philosophy-feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.philosophy-feature-text p {
    color: var(--gray);
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    background-color: var(--off-white);
    padding: 100px 0;
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center; /* Center text content */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
}

.service-card.featured {
    border: 2px solid var(--accent);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background-color: var(--light-gray);
    color: var(--primary);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.service-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--dark-gray);
}

.service-features li i {
    color: var(--secondary);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: auto;
    border-top: 1px solid var(--light-gray);
}

.service-duration {
    display: flex;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.service-duration i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.service-price {
    text-align: right;
}

.service-price span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
}

.service-price strong {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 700;
}

.service-card .btn {
    margin: 0 20px 20px;
}

.services-cta {
    text-align: center;
}

/* Process Section */
.process-section {
    background-color: var(--primary);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.process-section .section-tagline,
.process-section .section-title,
.process-section .section-description {
    color: var(--white);
}

.process-section .section-tagline::before {
    background-color: var(--accent);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-connector {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
}

.process-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.process-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.process-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--white);
    padding: 100px 0;
}

.testimonials-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-overall {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-overall {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 3rem;
    background-color: var(--off-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-stars {
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: var(--accent);
    font-size: 1.2rem;
    margin: 0 0.15rem;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.5rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
    color: var(--dark-gray);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0 0 0.5rem;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 0.9rem;
    margin-right: 0.15rem;
}

.testimonial-quote {
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-quote i {
    font-size: 2rem;
    color: var(--light-gray);
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    position: relative;
    z-index: 1;
    padding-left: 1.5rem;
}

.testimonial-text p {
    margin-bottom: 0;
}

.testimonial-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.testimonial-verified {
    color: var(--secondary-dark);
    display: flex;
    align-items: center;
}

.testimonial-verified i {
    margin-right: 0.25rem;
}

.testimonial-date {
    color: var(--gray);
}

.testimonials-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonial-nav {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-nav:hover {
    background-color: var(--primary);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    margin: 0 1rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 0.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
}

.testimonials-cta {
    text-align: center;
}

/* Contact Section */
.contact-section {
    background-color: var(--off-white);
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-content {
    flex: 1;
    max-width: 500px;
}

.contact-form {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    height: 650px;
}

.contact-info {
    margin-bottom: 2rem;
}

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

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--light-gray);
    color: var(--primary);
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--primary-dark);
}

.contact-text p {
    margin: 0;
    color: var(--gray);
}

.contact-guarantee {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.guarantee-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-light);
    color: var(--primary-dark);
    border-radius: 50%;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.guarantee-text h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--primary-dark);
}

.guarantee-text p {
    margin: 0;
    color: var(--gray);
    font-size: 0.95rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-connector {
        display: none;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: 600px;
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .philosophy-wrapper {
        flex-direction: column;
    }
    
    .philosophy-content,
    .philosophy-image {
        max-width: 100%;
    }
    
    .philosophy-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .philosophy-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .philosophy-feature-icon {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info-item,
    .contact-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon,
    .guarantee-icon {
        margin: 0 auto 1rem;
    }
}
