/* ===================================
   VARIABLES & DESIGN SYSTEM
   =================================== */
:root {
    /* Couleurs principales */
    --color-navy: #0A1929;
    --color-navy-light: #1A2F42;
    --color-navy-dark: #050C14;
    --color-gold: #D4AF37;
    --color-gold-light: #E5C158;
    --color-gold-dark: #B8941F;

    /* Couleurs neutres */
    --color-white: #FFFFFF;
    --color-light-gray: #E8EEF3;
    --color-gray: #A8B8C8;
    --color-dark-gray: #4A5568;

    /* Typographie */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;

    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Ombres */
    --shadow-sm: 0 2px 4px rgba(10, 25, 41, 0.1);
    --shadow-md: 0 4px 12px rgba(10, 25, 41, 0.15);
    --shadow-lg: 0 8px 24px rgba(10, 25, 41, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

a {
    transition: var(--transition-normal);
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.bg-navy {
    background-color: var(--color-navy) !important;
}

.bg-navy-light {
    background-color: var(--color-navy-light) !important;
}

.bg-gold {
    background-color: var(--color-gold) !important;
}

.text-gold {
    color: var(--color-gold) !important;
}

.text-navy {
    color: var(--color-navy) !important;
}

.text-light-gray {
    color: var(--color-light-gray) !important;
}

.border-gold {
    border-color: var(--color-gold) !important;
}

.hover-gold:hover {
    color: var(--color-gold) !important;
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    padding: 1rem 0;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 700;
    color: var(--color-white) !important;
    transition: var(--transition-fast);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.nav-link {
    color: var(--color-light-gray) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-navy) !important;
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline-gold {
    border: 2px solid var(--color-gold);
    color: var(--color-gold) !important;
    background: transparent;
}

.btn-outline-gold:hover {
    background-color: var(--color-gold);
    color: var(--color-navy) !important;
    transform: translateY(-3px);
}

.btn-navy {
    background-color: var(--color-navy);
    color: var(--color-white) !important;
}

.btn-navy:hover {
    background-color: var(--color-navy-light);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    position: relative;
    overflow: hidden;
    padding: 150px 0 50px 0;
}

/* Image de fond avec overlay */
.hero-section.with-image {
    background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=2084&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Overlay noir pour bien voir le texte */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 25, 41, 0.85);
    pointer-events: none;
    z-index: 1;
}

/* Effet de dégradé supplémentaire pour plus de profondeur */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    color: var(--color-light-gray);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-highlight {
    color: var(--color-gold);
    position: relative;
    display: inline-block;
}

/* Valeurs et engagements (remplace les stats) */
.hero-values {
    margin-top: 3rem;
}

.value-item {
    display: flex;
    align-items: start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    border-left: 4px solid var(--color-gold);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.value-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-right: 1.25rem;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.value-content h5 {
    color: var(--color-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-family: var(--font-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.value-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.service-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 2px solid transparent;
    height: fit-content;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--color-navy);
    box-shadow: var(--shadow-gold);
}

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

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

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--color-dark-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '\f26b';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* ===================================
   CTA SECTIONS
   =================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--color-light-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-item {
    background: var(--color-white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-white);
    transition: var(--transition-fast);
    font-weight: 600;
    color: var(--color-navy);
}

.faq-question:hover {
    background: var(--color-light-gray);
}

.faq-question.active {
    background: var(--color-navy);
    color: var(--color-white);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition-fast);
    color: var(--color-gold);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
    color: var(--color-dark-gray);
    line-height: 1.8;
}

.faq-answer.show {
    padding: 1.5rem;
    max-height: 1000px;
}

/* ===================================
   FORM STYLES
   =================================== */
.form-control,
.form-select {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--color-light-gray);
    border-radius: 10px;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
}

.form-text {
    color: var(--color-gray);
    font-size: 0.875rem;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.file-upload-label {
    display: block;
    padding: 2rem;
    border: 2px dashed var(--color-light-gray);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    background: var(--color-white);
}

.file-upload-label:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.05);
}

.file-upload-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

/* ===================================
   FLOATING CTA (Mobile)
   =================================== */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
}

@media (min-width: 992px) {
    .floating-cta {
        display: none !important;
    }
}

/* ===================================
   FEATURES / WHY CHOOSE US
   =================================== */
.feature-box {
    text-align: center;
    padding: 2rem;
    transition: var(--transition-normal);
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.feature-text {
    color: var(--color-dark-gray);
}

/* ===================================
   BADGES & LABELS
   =================================== */
.badge-custom {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.badge-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    color: var(--color-navy);
}

/* ===================================
   LOCATION BADGE
   =================================== */
.location-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    border-radius: 50px;
    color: var(--color-white);
    font-weight: 600;
}

.location-badge i {
    color: var(--color-gold);
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

/* ===================================
   ALERTS
   =================================== */
.alert-custom {
    border-radius: 15px;
    border: none;
    padding: 1.5rem;
}

.alert-success-custom {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--color-white);
}

.alert-danger-custom {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--color-white);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ===================================
   FINAL CTA WITH PHOTO
   =================================== */
.final-cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.final-cta-card {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-cta-card h2 {
    color: var(--color-navy);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.final-cta-card .service-icon {
    margin-bottom: 1.5rem;
}

.contact-info-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--color-light-gray);
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--color-dark-gray);
    font-size: 1rem;
    font-weight: 500;
}

.contact-item i {
    font-size: 1.25rem;
}

/* Photo de l'entrepreneuse */
.entrepreneur-photo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 500px;
}

.photo-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.entrepreneur-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

/* Placeholder quand l'image n'est pas présente */
.photo-empty {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 25, 41, 0.05) 100%);
    border-radius: 20px;
    border: 2px dashed var(--color-gold);
    color: var(--color-gray);
    text-align: center;
    padding: 2rem;
}

.photo-empty i {
    font-size: 5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.photo-empty p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-navy);
}

.photo-empty small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-gray);
    font-weight: 400;
}

/* Élément décoratif doré */
.photo-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

/* Animation flottante pour la décoration */
@keyframes float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 991px) {
    .section-padding {
        padding: var(--spacing-lg) 0;
    }

    .hero-section {
        min-height: auto;
        padding: 5rem 0 3rem;
    }

    .service-card {
        margin-bottom: 2rem;
    }

    /* Add padding to bottom for floating CTA */
    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .navbar,
    .floating-cta,
    footer {
        display: none;
    }
}
