/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs principales */
    --primary-color: #0f6b8f;
    --secondary-color: #0f766e;
    --accent-color: #06b6d4;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-900: #111827;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #0f6b8f 55%, #0f766e 100%);
    --gradient-secondary: linear-gradient(135deg, #0f766e 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #111827 0%, #020617 100%);
    
    /* Typographie */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-base: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo .logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: var(--spacing-xl);
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: var(--font-size-lg);
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(120deg, rgba(15, 23, 42, 0.94), rgba(15, 107, 143, 0.82)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 90px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 90px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
    position: relative;
}

.hero-title::before,
.hero-title::after {
    font-size: 1.2em;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title::before {
    content: '"';
}

.hero-title::after {
    content: '"';
}

.quote-mark {
    font-size: 1.2em;
    opacity: 0.8;
}

.hero-author {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    min-height: 48px;
    padding: 0 var(--spacing-xl);
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.hero-action:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.hero-action-primary {
    background: rgba(255, 255, 255, 0.18);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-action-secondary {
    background: #16a34a;
    border-color: rgba(22, 163, 74, 0.9);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--white);
}

.stat-rating {
    display: block;
    font-size: var(--font-size-2xl);
    color: #fbbf24;
}

.stat-label {
    display: block;
    font-size: var(--font-size-sm);
    opacity: 0.9;
    margin-top: var(--spacing-xs);
}

/* Statistiques simples */
.hero-stats-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    flex-wrap: wrap;
}

.stat-simple {
    color: var(--white);
    font-size: var(--font-size-base);
    font-weight: 500;
    opacity: 0.9;
}

.stat-separator {
    color: var(--white);
    opacity: 0.6;
    font-weight: 300;
}

/* Style pour les étoiles avec popup */
.stat-stars {
    position: relative;
    color: #fbbf24;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-stars:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Popup tooltip */
.stars-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
    background: #ffffff;
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
    z-index: 1000;
}

.stars-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

.stat-stars:hover .stars-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.tooltip-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.tooltip-content {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-2xl);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-base);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About Section */
.about-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dark);
    font-style: italic;
}

.about-description {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.signature {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.signature-img {
    height: 200px;
    width: auto;
    max-width: 350px;
}

.signature-name {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-dark);
}

.signature-title {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-top: var(--spacing-xs);
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
}

.service-icon i {
    font-size: var(--font-size-2xl);
    color: var(--white);
}

.service-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.service-link:hover {
    color: var(--secondary-color);
}

/* Projects Section */
.projects-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: var(--spacing-xl);
}

.project-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.project-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xl);
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.testimonial-quote {
    font-size: var(--font-size-xl);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.author-name {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.rating {
    color: #fbbf24;
    font-size: var(--font-size-lg);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.contact-subtitle {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.contact-details {
    margin-bottom: var(--spacing-2xl);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: var(--spacing-2xl);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-xl);
}

.contact-panel h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.contact-panel p {
    color: rgba(255, 255, 255, 0.78);
}

.contact-actions {
    display: grid;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.contact-link-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    min-height: 58px;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform var(--transition-base), background var(--transition-base);
}

.contact-link-card:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
}

.contact-link-card i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
}

.whatsapp-link i {
    background: rgba(22, 163, 74, 0.28);
}

.contact-note {
    font-size: var(--font-size-sm);
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.newsletter-form h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group input {
    padding: var(--spacing-md);
    border: none;
    border-radius: 8px;
    font-size: var(--font-size-base);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-submit {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    padding: var(--spacing-xl) 0;
    background: var(--gray-900);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.footer-right a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-right a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-stats {
        gap: var(--spacing-lg);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-action {
        width: 100%;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .section-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
}

/* Animations et effets */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Bootstrap Integration and Custom Classes */
.section-subtitle-width {
    max-width: 600px !important;
}

/* Override Bootstrap navbar for custom styling */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand .logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
    cursor: pointer;
}

.navbar-brand .logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(74, 144, 226, 0.1),
        rgba(80, 200, 120, 0.1),
        rgba(255, 107, 107, 0.1),
        rgba(74, 144, 226, 0.1)
    );
    background-size: 300% 300%;
    border-radius: 50%;
    opacity: 0;
    animation: gradientRotate 3s ease-in-out infinite;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.navbar-brand .logo:hover::before {
    opacity: 1;
}

.navbar-brand .logo:hover {
    transform: scale(1.08) rotate(-2deg);
    filter: drop-shadow(0 8px 25px rgba(74, 144, 226, 0.4)) 
            drop-shadow(0 0 20px rgba(80, 200, 120, 0.2));
    animation: logoFloat 2s ease-in-out infinite, logoPulse 1.5s ease-in-out infinite;
}

/* Animation de flottement subtil */
@keyframes logoFloat {
    0%, 100% { 
        transform: scale(1.08) rotate(-2deg) translateY(0px); 
    }
    50% { 
        transform: scale(1.08) rotate(-2deg) translateY(-3px); 
    }
}

/* Animation de pulsation délicate */
@keyframes logoPulse {
    0%, 100% { 
        filter: drop-shadow(0 8px 25px rgba(74, 144, 226, 0.4)) 
                drop-shadow(0 0 20px rgba(80, 200, 120, 0.2));
    }
    50% { 
        filter: drop-shadow(0 10px 30px rgba(74, 144, 226, 0.6)) 
                drop-shadow(0 0 25px rgba(80, 200, 120, 0.3));
    }
}

/* Animation du dégradé de fond */
@keyframes gradientRotate {
    0% { 
        background-position: 0% 50%; 
        transform: rotate(0deg);
    }
    50% { 
        background-position: 100% 50%; 
        transform: rotate(180deg);
    }
    100% { 
        background-position: 0% 50%; 
        transform: rotate(360deg);
    }
}

/* Effet de particules code-like */
.navbar-brand::after {
    content: '{ }';
    position: absolute;
    top: -15px;
    right: -25px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 10;
}

.navbar-brand:hover::after {
    opacity: 0.7;
    transform: translateY(0) scale(1);
    animation: codeFloat 2s ease-in-out infinite;
}

@keyframes codeFloat {
    0%, 100% { 
        transform: translateY(0) scale(1) rotate(0deg); 
    }
    25% { 
        transform: translateY(-2px) scale(1.05) rotate(1deg); 
    }
    75% { 
        transform: translateY(2px) scale(0.95) rotate(-1deg); 
    }
}

/* Effet de brillance métallique */
.navbar-brand .logo:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.6), 
        transparent
    );
    animation: shine 1.5s ease-in-out;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.navbar-brand {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px;
}

/* Éléments de code décoratifs */
.navbar-brand::before {
    content: '<dev>';
    position: absolute;
    top: -20px;
    left: -30px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--secondary-color);
    opacity: 0;
    transform: translateX(-20px) rotate(-15deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    z-index: 10;
}

.navbar-brand:hover::before {
    opacity: 0.6;
    transform: translateX(0) rotate(0deg);
    animation: codeGlow 2s ease-in-out infinite;
}

@keyframes codeGlow {
    0%, 100% { 
        color: var(--secondary-color);
        text-shadow: 0 0 5px rgba(80, 200, 120, 0.3);
    }
    50% { 
        color: var(--primary-color);
        text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
    }
}

/* Responsive adjustments for navbar */
@media (max-width: 991.98px) {
    .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .navbar-toggler {
        position: relative;
        z-index: 1001;
    }
}

@media (min-width: 992px) {
    .navbar-brand {
        margin: 0;
        position: static;
        transform: none;
    }
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 0 var(--spacing-md);
    padding: 10px 20px !important;
    border-radius: 25px;
    overflow: hidden;
    background: transparent;
    border: 2px solid transparent;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.35);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(15, 107, 143, 0.08);
    border-color: rgba(15, 107, 143, 0.16);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
    z-index: 2;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.navbar-nav .nav-link:active {
    transform: translateY(-1px);
    transition: transform 0.1s ease;
}

/* Animation pour l'apparition en séquence */
.navbar-nav .nav-item {
    animation: slideInNav 0.6s ease forwards;
    opacity: 0;
    transform: translateY(-20px);
}

.navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
.navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
.navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
.navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
.navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInNav {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bootstrap Button Customization */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: 50px;
    transition: all var(--transition-base);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Professional homepage sections */
.brand-hero-title::before,
.brand-hero-title::after {
    content: none;
}

.navbar-nav .nav-link.nav-contact-link {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    box-shadow: 0 8px 22px rgba(15, 107, 143, 0.22);
}

.navbar-nav .nav-link.nav-contact-link:hover,
.navbar-nav .nav-link.nav-contact-link.active {
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.35);
}

.trust-section {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 18px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.trust-item {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    background: var(--gray-50);
    color: var(--text-dark);
    font-weight: 700;
    font-size: var(--font-size-sm);
}

.trust-item i {
    color: var(--primary-color);
}

.value-section {
    background: var(--white);
}

.professional-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
}

.professional-link:hover {
    color: var(--secondary-color);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    padding: var(--spacing-xl);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--gradient-primary);
    margin-bottom: var(--spacing-lg);
}

.value-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.method-section {
    background: var(--gray-50);
}

.method-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
    counter-reset: method;
}

.method-step {
    position: relative;
    padding: var(--spacing-xl);
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.method-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: var(--spacing-lg);
    border-radius: 8px;
    color: var(--white);
    background: var(--primary-color);
    font-weight: 800;
}

.method-step h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.method-step p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.sectors-section {
    background: var(--white);
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.sector-grid span {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0 var(--spacing-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    font-weight: 700;
    color: var(--text-dark);
}

.sector-grid i {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .trust-grid,
    .value-grid,
    .method-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .trust-grid,
    .value-grid,
    .method-timeline,
    .sector-grid {
        grid-template-columns: 1fr;
    }

    .trust-item {
        justify-content: flex-start;
        padding: 0 var(--spacing-lg);
    }
}

/* Bootstrap Card Customization */
.service-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    height: 100%;
}

/* Ensure Bootstrap responsive images work with our project cards */
.project-image img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Service Pages Styles */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    margin-top: 70px;
}

.breadcrumb {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.page-title {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.page-subtitle {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.service-details {
    padding: var(--spacing-3xl) 0;
}

.service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-3xl);
}

.content-main h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.service-overview {
    margin-bottom: var(--spacing-3xl);
}

.service-overview p {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--gray-50);
    border-radius: 10px;
    transition: transform var(--transition-base);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
}

.feature-icon i {
    font-size: var(--font-size-xl);
    color: var(--white);
}

.feature-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.service-benefits {
    margin-bottom: var(--spacing-3xl);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.benefit-item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    margin-top: 2px;
}

.benefit-item h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-card {
    background: var(--gray-50);
    padding: var(--spacing-xl);
    border-radius: 15px;
    text-align: center;
}

.contact-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.contact-card .contact-info {
    margin-bottom: var(--spacing-lg);
}

.contact-card .contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.contact-card .contact-item i {
    color: var(--primary-color);
}

.contact-card .contact-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.contact-card .contact-item a:hover {
    color: var(--primary-color);
}

.related-services {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 15px;
    border: 1px solid var(--gray-100);
}

.related-services h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.related-services ul {
    list-style: none;
}

.related-services li {
    margin-bottom: var(--spacing-md);
}

.related-services a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-base);
}

.related-services a:hover {
    color: var(--primary-color);
}

.process-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.step-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto var(--spacing-lg);
}

.step-item h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.step-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.cta-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

/* Responsive for service pages */
@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
    }
    
    .page-title {
        font-size: var(--font-size-2xl);
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .content-sidebar {
        order: -1;
    }
    
    .features-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: var(--font-size-2xl);
    }
}

/* Privacy Policy Styles */
.privacy-content {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: var(--spacing-2xl);
    font-size: var(--font-size-sm);
}

.privacy-section {
    margin-bottom: var(--spacing-2xl);
}

.privacy-section h2 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-xs);
}

.privacy-section p {
    font-size: var(--font-size-base);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.privacy-section ul {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
}

.privacy-section li {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.privacy-section .contact-info {
    background: var(--gray-50);
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-top: var(--spacing-lg);
}

.privacy-section .contact-info p {
    margin-bottom: var(--spacing-xs);
}

.privacy-section .contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-section .contact-info a:hover {
    text-decoration: underline;
}

/* Portfolio Styles */
.portfolio-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.37), rgba(118, 75, 162, 0.37)), 
                url('../images/Pictures/Background_portfolio.jpg') center/cover no-repeat;
    min-height: 80vh;
    position: relative;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.37), rgba(118, 75, 162, 0.37));
    z-index: 1;
}

.portfolio-hero .container {
    position: relative;
    z-index: 2;
}

.hero-quote-author {
    font-size: var(--font-size-lg);
    margin: var(--spacing-lg) 0;
    opacity: 0.9;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: var(--font-size-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.portfolio-grid {
    margin-top: var(--spacing-2xl);
}

.portfolio-card {
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 0.95;
}

.portfolio-content {
    text-align: center;
    color: var(--white);
    padding: var(--spacing-lg);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.portfolio-content p {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xs);
}

.tech-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: var(--font-size-xs);
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.expertise-card {
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(74, 144, 226, 0.1);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: transform 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(5deg);
}

.expertise-icon i {
    font-size: var(--font-size-2xl);
    color: var(--white);
}

.expertise-card h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.expertise-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-sm);
}

.expertise-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.expertise-list li {
    color: var(--text-light);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: var(--font-size-sm);
    position: relative;
    padding-left: var(--spacing-lg);
}

.expertise-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.expertise-list li:last-child {
    border-bottom: none;
}

/* Responsive adjustments for portfolio */
@media (max-width: 768px) {
    .portfolio-filter {
        justify-content: center;
    }
    
    .filter-btn {
        font-size: var(--font-size-xs);
        padding: 8px 16px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .expertise-card {
        margin-bottom: var(--spacing-xl);
    }
}

/* Origid Style Footer */
.footer.origid-style {
    background: var(--white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-contact-section {
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-section-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    font-size: var(--font-size-sm);
    color: var(--text-light);
}

.contact-item strong {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.contact-separator {
    color: rgba(0, 0, 0, 0.2);
    font-weight: 300;
}

.btn-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.3);
    color: var(--white);
}

.footer-bottom-section {
    padding-top: var(--spacing-xl);
}

.footer-copyright {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-left: var(--spacing-xs);
}

.footer-mini-logo {
    height: 20px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.footer-logo-link:hover .footer-mini-logo {
    opacity: 1;
}

.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.social-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    font-weight: 500;
}

.footer-social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: var(--font-size-sm);
}

.footer-social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

/* Responsive adjustments for Origid footer */
@media (max-width: 768px) {
    .footer-contact-info {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .contact-separator {
        display: none;
    }
    
    .footer-copyright {
        flex-direction: row;
        justify-content: center;
        text-align: center;
        margin-bottom: var(--spacing-lg);
        flex-wrap: wrap;
    }
    
    .footer-social-section {
        align-items: center;
    }
    
    .footer.origid-style .col-md-6 {
        text-align: center !important;
    }
}

@media (min-width: 769px) {
    .footer-copyright {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Modern Privacy Policy Styles */
.modern-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 14px;
}

.breadcrumb-modern a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    background: rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
}

.breadcrumb-modern a:hover {
    background: var(--primary-color);
    color: white;
}

.separator {
    margin: 0 1rem;
    color: #94a3b8;
}

.current {
    color: #64748b;
}

/* Enterprise Portfolio and Partners Pages */
.min-vh-75 {
    min-height: 75vh;
}

.enterprise-hero {
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 70px;
    color: var(--white);
    overflow: hidden;
    background: var(--gradient-dark);
}

.portfolio-enterprise-hero {
    background:
        linear-gradient(120deg, rgba(15, 23, 42, 0.94), rgba(15, 107, 143, 0.78)),
        url('../images/Pictures/Background_portfolio.jpg') center/cover no-repeat;
}

.partners-enterprise-hero {
    background:
        linear-gradient(120deg, rgba(15, 23, 42, 0.97), rgba(15, 118, 110, 0.84)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 90px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 90px);
}

.enterprise-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 18%, rgba(6, 182, 212, 0.26), transparent 34%);
    pointer-events: none;
}

.enterprise-hero .container {
    position: relative;
    z-index: 2;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: var(--font-size-xs);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-eyebrow {
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.section-kicker {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
    background: #e0f2fe;
}

.enterprise-hero h1 {
    max-width: 760px;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: var(--spacing-lg);
}

.enterprise-hero p {
    max-width: 670px;
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: var(--spacing-xl);
}

.enterprise-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.enterprise-action-dark {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}

.portfolio-hero-panel {
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.portfolio-hero-panel > span {
    display: block;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.portfolio-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.portfolio-panel-grid div {
    min-height: 118px;
    padding: var(--spacing-lg);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.portfolio-panel-grid strong,
.portfolio-panel-grid small {
    display: block;
}

.portfolio-panel-grid strong {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.portfolio-panel-grid small {
    color: rgba(255, 255, 255, 0.68);
}

.portfolio-proof-section,
.partners-proof-section {
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
}

.portfolio-proof-grid,
.partners-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.portfolio-proof-grid div,
.partners-proof-grid div {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-lg);
    border-right: 1px solid var(--gray-100);
}

.portfolio-proof-grid div:last-child,
.partners-proof-grid div:last-child {
    border-right: 0;
}

.portfolio-proof-grid strong,
.partners-proof-grid strong {
    color: var(--primary-color);
    font-size: var(--font-size-3xl);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.portfolio-proof-grid span,
.partners-proof-grid span {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    font-weight: 700;
}

.portfolio-showcase-section,
.partner-ecosystem-section {
    background: var(--white);
}

.portfolio-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.portfolio-feature-card {
    display: flex;
    flex-direction: column;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--gray-100);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.portfolio-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.portfolio-feature-large {
    grid-column: span 2;
}

.portfolio-card-media {
    min-height: 190px;
    background-size: cover;
    background-position: center;
}

.cyber-media {
    background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.36), rgba(15, 107, 143, 0.22)), url('https://images.unsplash.com/photo-1563013544-824ae1b704d3?auto=format&fit=crop&w=900&q=80');
}

.brand-media {
    background-image: linear-gradient(120deg, rgba(15, 107, 143, 0.26), rgba(15, 118, 110, 0.22)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=80');
}

.ai-media {
    background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.26), rgba(6, 182, 212, 0.24)), url('https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=900&q=80');
}

.mobile-media {
    background-image: linear-gradient(120deg, rgba(15, 118, 110, 0.22), rgba(245, 158, 11, 0.2)), url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?auto=format&fit=crop&w=900&q=80');
}

.expansion-media {
    background-image: linear-gradient(120deg, rgba(15, 23, 42, 0.3), rgba(220, 38, 38, 0.18)), url('https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?auto=format&fit=crop&w=900&q=80');
}

.portfolio-card-body {
    flex: 1;
    padding: var(--spacing-xl);
}

.portfolio-card-body span,
.partner-showcase-card span {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.portfolio-card-body h3,
.partner-showcase-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.portfolio-card-body p,
.partner-showcase-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.portfolio-card-body ul {
    margin: var(--spacing-lg) 0 0;
    padding: 0;
    list-style: none;
}

.portfolio-card-body li {
    display: flex;
    gap: var(--spacing-sm);
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.portfolio-card-body li::before {
    content: '✓';
    color: var(--secondary-color);
}

.portfolio-quality-section,
.alliance-section {
    background: var(--gray-50);
}

.quality-grid,
.alliance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.quality-grid div,
.alliance-grid div {
    min-height: 72px;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 0 var(--spacing-lg);
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    font-weight: 800;
}

.quality-grid i,
.alliance-grid i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: var(--white);
    background: var(--primary-color);
}

.portfolio-process-section {
    background: var(--white);
}

.enterprise-cta-section,
.partner-join-section {
    background: var(--gray-50);
}

.enterprise-cta-card,
.partner-join-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    padding: var(--spacing-2xl);
    border-radius: 8px;
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-xl);
}

.enterprise-cta-card h2,
.partner-join-card h2 {
    max-width: 760px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0 0 var(--spacing-md);
}

.enterprise-cta-card p,
.partner-join-card p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.enterprise-cta-card .section-kicker,
.partner-join-card .section-kicker {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.12);
}

.partner-logo-wall {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-md);
}

.logo-wall-item {
    min-height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.logo-wall-item.featured {
    grid-column: span 2;
    background: rgba(255, 255, 255, 0.98);
}

.logo-wall-item img {
    max-width: 100%;
    max-height: 92px;
    object-fit: contain;
}

.partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.partner-showcase-card {
    display: flex;
    gap: var(--spacing-lg);
    min-height: 230px;
    padding: var(--spacing-xl);
    border-radius: 8px;
    border: 1px solid var(--gray-100);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.partner-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(15, 107, 143, 0.32);
}

.major-partner {
    grid-column: span 2;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
}

.partner-logo-box {
    width: 94px;
    height: 94px;
    flex: 0 0 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
}

.partner-logo-box img {
    max-width: 76px;
    max-height: 76px;
    object-fit: contain;
}

.text-logo-box {
    color: var(--white);
    background: var(--gradient-primary);
    font-weight: 800;
    font-size: var(--font-size-2xl);
}

@media (max-width: 992px) {
    .enterprise-hero {
        padding-top: 110px;
    }

    .portfolio-feature-grid,
    .partner-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-feature-large,
    .major-partner {
        grid-column: span 2;
    }

    .portfolio-proof-grid,
    .partners-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-proof-grid div,
    .partners-proof-grid div {
        border-bottom: 1px solid var(--gray-100);
    }
}

@media (max-width: 768px) {
    .enterprise-actions,
    .enterprise-cta-card,
    .partner-join-card {
        flex-direction: column;
        align-items: stretch;
    }

    .partner-logo-wall,
    .quality-grid,
    .alliance-grid {
        grid-template-columns: 1fr;
    }

    .logo-wall-item.featured {
        grid-column: auto;
    }

    .partner-showcase-card,
    .major-partner {
        grid-column: auto;
    }
}

@media (max-width: 576px) {
    .portfolio-feature-grid,
    .partner-showcase-grid,
    .portfolio-panel-grid,
    .portfolio-proof-grid,
    .partners-proof-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-feature-large {
        grid-column: auto;
    }

    .partner-showcase-card {
        flex-direction: column;
    }

    .portfolio-proof-grid div,
    .partners-proof-grid div {
        border-right: 0;
    }
}

.modern-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    font-weight: 500;
}

.stat-item i {
    color: var(--primary-color);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(80, 200, 120, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.modern-privacy-content {
    padding: 80px 0;
    background: #f8fafc;
}

.privacy-content-modern {
    max-width: 900px;
    margin: 0 auto;
}

.update-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #e0f2fe;
    color: #0284c7;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.privacy-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
    transition: all 0.3s ease;
}

.privacy-card.compact {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.highlight-card {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.compact .card-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.compact .card-icon i {
    font-size: 1.2rem;
}

.privacy-card h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.compact h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.lead {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.lead-compact {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Compact Data Types */
.data-types-compact {
    display: grid;
    gap: 1rem;
}

.data-type-compact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-type-compact:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.type-icon-compact {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.type-icon-compact i {
    color: white;
    font-size: 0.9rem;
}

.type-info-compact h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.data-count {
    font-size: 0.8rem;
    color: #64748b;
    background: rgba(74, 144, 226, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
}

.hover-details {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.data-type-compact:hover .hover-details {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.85rem;
    color: #64748b;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Compact Usage Grid */
.usage-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.usage-item-compact {
    position: relative;
    text-align: center;
    padding: 1.25rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.usage-item-compact:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.usage-item-compact i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.usage-item-compact h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.usage-details {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.detail-badge {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Compact Security Features */
.security-features-compact {
    display: grid;
    gap: 1rem;
}

.feature-compact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-compact i {
    color: white;
    font-size: 1rem;
}

.feature-details-compact h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.security-badge-compact {
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

.security-badge-compact.active {
    background: #dcfce7;
    color: #166534;
}

.security-badge-compact.certified {
    background: #fef3c7;
    color: #92400e;
}

.security-level {
    font-size: 0.75rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.2rem 0.6rem;
    border-radius: 8px;
}

/* Tooltip Global Styles */
[data-tooltip] {
    position: relative;
}

[data-tooltip]:before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
    white-space: normal;
    width: 250px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-tooltip]:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1f2937;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 20;
    margin-bottom: 2px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    opacity: 1;
    visibility: visible;
}

/* Rights Section Compact */
.rights-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.right-item-compact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid #10b981;
    cursor: pointer;
    transition: all 0.3s ease;
}

.right-item-compact:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.right-icon-compact {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.right-icon-compact i {
    color: white;
    font-size: 0.9rem;
}

.right-info-compact {
    flex: 1;
}

.right-info-compact h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.right-status {
    font-size: 0.8rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 500;
}

/* Cookies Section Compact */
.cookies-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cookie-item-compact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 3px solid #6366f1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-item-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.cookie-item-compact.essential {
    border-left-color: #ef4444;
}

.cookie-item-compact.analytics {
    border-left-color: #3b82f6;
}

.cookie-item-compact.marketing {
    border-left-color: #f59e0b;
}

.cookie-item-compact.preferences {
    border-left-color: #8b5cf6;
}

.cookie-icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.essential .cookie-icon-compact {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.analytics .cookie-icon-compact {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.marketing .cookie-icon-compact {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.preferences .cookie-icon-compact {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.cookie-icon-compact i {
    color: white;
    font-size: 1rem;
}

.cookie-info-compact {
    flex: 1;
}

.cookie-info-compact h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.cookie-status {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
}

.cookie-status.required {
    background: #fee2e2;
    color: #dc2626;
}

.cookie-status.optional {
    background: #dbeafe;
    color: #2563eb;
}

.cookie-toggle-compact {
    display: flex;
    align-items: center;
}

.cookie-toggle-compact .toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background: #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-toggle-compact .toggle:before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle-compact input:checked + .toggle {
    background: var(--primary-color);
}

.cookie-toggle-compact input:checked + .toggle:before {
    transform: translateX(26px);
}

.cookie-toggle-compact input {
    display: none;
}

.cookie-toggle-compact .toggle.always-on {
    background: #9ca3af;
    cursor: not-allowed;
}

.cookie-toggle-compact .toggle.always-on:before {
    background: #f3f4f6;
}

.cookie-actions-compact {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-actions-compact button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save-preferences {
    background: var(--primary-color);
    color: white;
}

.btn-save-preferences:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-accept-all {
    background: #10b981;
    color: white;
}

.btn-accept-all:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-reject-optional {
    background: #6b7280;
    color: white;
}

.btn-reject-optional:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

/* Contact Section Compact */
.contact-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method-compact {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-method-compact:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.contact-icon-compact {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-compact i {
    color: white;
    font-size: 1rem;
}

.contact-info-compact {
    flex: 1;
}

.contact-info-compact h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-status {
    text-align: right;
}

.contact-status span {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 10px;
    font-weight: 500;
}

.response-time {
    background: #dcfce7;
    color: #166534;
}

.availability {
    background: #fef3c7;
    color: #92400e;
}

.auto-service {
    background: #e0f2fe;
    color: #0369a1;
}

.contact-footer-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 1rem;
}

.privacy-officer, .last-update {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.privacy-officer i, .last-update i {
    color: var(--primary-color);
}

/* Responsive Design for Compact Sections */
@media (max-width: 768px) {
    .compact {
        padding: 1rem;
    }
    
    .data-types-compact,
    .usage-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .cookie-actions-compact {
        flex-direction: column;
    }
    
    .contact-footer-compact {
        flex-direction: column;
        text-align: center;
    }
    
    .hover-details {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 1rem;
        background: #f1f5f9;
    }
    
    [data-tooltip]:before,
    [data-tooltip]:after {
        display: none;
    }
}

.data-types {
    display: grid;
    gap: 1.5rem;
}

.data-type {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.type-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.type-icon i {
    color: white;
    font-size: 1rem;
}

.type-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.type-info p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.usage-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.usage-item:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.usage-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.usage-item h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.usage-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.security-features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.feature-details h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-details p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.security-badge {
    background: #dcfce7;
    color: #166534;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.right-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.right-item:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.right-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.right-icon i {
    color: white;
    font-size: 1.2rem;
}

.right-item h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.right-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.btn-right {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-right:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.btn-right:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cookie-settings {
    display: grid;
    gap: 1rem;
}

.cookie-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-header h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch.enabled {
    background: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 12px;
}

.toggle-switch label:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.toggle-switch input:checked + label {
    background-color: var(--primary-color);
}

.toggle-switch input:checked + label:before {
    transform: translateX(26px);
}

.contact-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
}

.contact-method:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.contact-method i {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.contact-method:hover i {
    color: white;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #ecfdf5;
    color: #065f46;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .modern-hero-title {
        font-size: 2rem;
    }
    
    .privacy-card {
        padding: 1.5rem;
    }
    
    .data-type,
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-methods {
        flex-direction: column;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
    }
}

/* Privacy Policy Text Simple */
.privacy-content {
    margin-top: 120px;
}

.privacy-text {
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #374151;
}

.privacy-text h1 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

.privacy-text h2 {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.privacy-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.privacy-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-content {
        margin-top: 100px;
    }
    
    .privacy-text h1 {
        font-size: 2rem;
    }
    
    .privacy-text h2 {
        font-size: 1.3rem;
    }
    
    .privacy-text p {
        font-size: 1rem;
        text-align: left;
    }
}

/* Privacy Policy Link avec Popup */
.privacy-link {
    position: relative;
    display: inline-block;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-left: 15px;
}

.privacy-link:hover {
    color: #667eea;
    text-decoration: none;
}

.privacy-link-current {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 15px;
    opacity: 0.7;
}

.privacy-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 15px;
    width: 350px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1000;
    pointer-events: none;
}

.privacy-link:hover .privacy-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
    pointer-events: all;
}

.privacy-popup::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
}

.privacy-popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.privacy-popup-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.privacy-popup-icon i {
    color: white;
    font-size: 20px;
}

.privacy-popup-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.3;
}

.privacy-popup-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.privacy-popup-features {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.privacy-popup-features li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.privacy-popup-features li:last-child {
    margin-bottom: 0;
}

.privacy-popup-features i {
    color: #10b981;
    margin-right: 8px;
    font-size: 12px;
}

.privacy-popup-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.privacy-popup-cta:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive pour le popup */
@media (max-width: 768px) {
    .privacy-popup {
        width: 300px;
        padding: 16px;
    }
    
    .privacy-popup-title {
        font-size: 1rem;
    }
    
    .privacy-popup-description {
        font-size: 0.85rem;
    }
    
    .privacy-popup-features li {
        font-size: 0.8rem;
    }
}

/* Styles pour la page Privacy Policy */
.privacy-policy-section {
    padding: 80px 0;
    background: #f8fafc;
}

.privacy-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.privacy-section h2 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.privacy-section h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.privacy-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.privacy-section ul {
    margin-bottom: 20px;
}

.privacy-section li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.privacy-section li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.last-updated {
    text-align: center;
    padding: 15px;
    background: #f1f5f9;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item i {
    color: #667eea;
    margin-right: 10px;
    width: 20px;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #667eea;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 30px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
}