/* style.css - EasyDev Tunisie */

/* ===================================
   PALETTE PROFESSIONNELLE
   =================================== */
:root {
    /* Couleurs principales - Bleu marine corporate */
    --primary: #1e3a5f;
    --primary-light: #2c5282;
    --primary-dark: #0f172a;
    --primary-rgb: 30, 58, 95;
    
    /* Accents - Or/Ambre élégant */
    --accent: #d4af37;
    --accent-light: #f4d03f;
    --accent-dark: #b8941f;
    --accent-rgb: 212, 175, 55;
    
    /* Neutres - Gris sophistiqués */
    --bg-body: #0a0e17;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --bg-elevated: #111827;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(212, 175, 55, 0.3);
    
    /* Texte */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    
    /* Dégradés subtils */
    --gradient-main: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    --gradient-accent: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-text: linear-gradient(to right, #d4af37, #f4d03f);
    --gradient-dark: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    
    /* Spacing & Radius */
    --radius: 12px;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

@keyframes slide-up {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===================================
   RESET & BASE
   =================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(30, 58, 95, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05), transparent 40%);
    background-attachment: fixed;
    padding-bottom: 70px; /* Pour le bandeau cookies */
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

a { 
    text-decoration: none; 
    transition: var(--transition);
    color: inherit;
}

ul { list-style: none; }

img { 
    max-width: 100%; 
    display: block; 
    border-radius: var(--radius);
    height: auto;
}

/* ===================================
   UTILITIES
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-padding { 
    padding: 100px 0; 
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 25px auto 0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
}

/* Accessibilité */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

/* ===================================
   BOUTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(var(--accent-rgb), 0.05);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
}

header.scrolled {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
    z-index: 1001;
}

.logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .btn::after {
    display: none;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION
   =================================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: slide-up 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(var(--accent-rgb), 0.1);
    border: 1px solid var(--accent);
    border-radius: 30px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-main);
}

.hero-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(var(--accent-rgb), 0.2));
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 40px 0;
    margin-top: 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 35px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    animation: slide-up 0.6s ease-out forwards;
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2rem;
    color: var(--accent);
}

.service-card:hover .service-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(5deg);
}

.service-card:hover .service-icon i {
    color: var(--primary-dark);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.service-card > p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--text-muted);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--accent);
    font-size: 0.9rem;
}

/* ===================================
   PROCESS TIMELINE
   =================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.process-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.process-item.visible {
    animation: slide-up 0.6s ease-out forwards;
}

.process-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.process-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.process-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.process-content p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--bg-elevated);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 23, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-details-btn {
    padding: 12px 28px;
    background: var(--accent);
    color: var(--primary-dark);
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.view-details-btn:hover {
    background: var(--accent-light);
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.project-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.project-info p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===================================
   PROJECT MODAL
   =================================== */
.project-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    padding: 20px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-modal.active {
    opacity: 1;
}

.modal-content {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scale-in 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

.modal-body img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
}

.modal-info .project-tag {
    margin-bottom: 15px;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-answer strong {
    color: var(--accent);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--bg-elevated);
    border-radius: var(--radius);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--accent);
}

.social-links-contact {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links-contact a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-links-contact a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-pro {
    margin-bottom: 20px;
}

.form-group-pro label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control-pro {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-main);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.form-control-pro::placeholder {
    color: var(--text-subtle);
}

.form-control-pro:focus {
    outline: none;
    border-color: var(--accent);
    background: var(--bg-card-hover);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

textarea.form-control-pro {
    min-height: 150px;
    resize: vertical;
}

/* CORRECTION DES LISTES DÉROULANTES */
.select-dark {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
    background-color: var(--bg-card) !important;
    color: var(--text-main) !important;
}

/* Style pour les options des listes déroulantes */
.select-dark option {
    background-color: var(--bg-elevated);
    color: var(--text-main);
    padding: 10px;
}

/* Pour WebKit (Chrome, Safari, Edge) */
.select-dark:focus {
    background-color: var(--bg-card-hover);
    color: var(--text-main);
}

/* Correction spécifique pour Firefox */
@-moz-document url-prefix() {
    .select-dark {
        color: var(--text-main);
        text-shadow: 0 0 0 var(--text-main);
    }
    
    .select-dark option {
        background-color: var(--bg-elevated);
        color: var(--text-main);
    }
}

/* Pour IE/Edge (version plus ancienne) */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .select-dark {
        color: var(--text-main);
    }
    
    .select-dark::-ms-expand {
        display: none;
    }
    
    .select-dark option {
        background-color: var(--bg-elevated);
        color: var(--text-main);
    }
}

/* Correction de l'apparence générale du select */
select.form-control-pro {
    background-color: var(--bg-card);
    color: var(--text-main);
}

select.form-control-pro option {
    background-color: var(--bg-elevated);
    color: var(--text-main);
    padding: 12px;
}

/* Amélioration de l'accessibilité au focus */
select.form-control-pro:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.submit-btn-pro {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-pro:hover:not(:disabled) {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(var(--accent-rgb), 0.3);
}

.submit-btn-pro:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--text-main);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.form-success p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand-pro p {
    color: var(--text-muted);
    margin: 20px 0;
    line-height: 1.7;
}

.social-row {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links-pro ul li {
    margin-bottom: 12px;
}

.footer-links-pro ul li a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-links-pro ul li a:hover {
    color: var(--accent);
}

.footer-bottom-pro {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-subtle);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent);
}

/* ===================================
   COOKIES BANNER
   =================================== */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-top: 2px solid var(--border-color);
    padding: 20px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookies-banner.show {
    transform: translateY(0);
}

.cookies-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookies-text {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookies-text i {
    color: var(--accent);
    font-size: 1.5rem;
}

.cookies-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookies-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookies-btn {
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.cookies-accept {
    background: var(--accent);
    color: var(--primary-dark);
    border: none;
}

.cookies-accept:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.cookies-reject {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
}

.cookies-reject:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        background: rgba(10, 14, 23, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 40px 30px;
        border-radius: var(--radius) 0 0 var(--radius);
        border: 1px solid var(--border-color);
        border-right: none;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: flex-start;
        gap: 20px;
        min-height: calc(100vh - 80px);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .faq-container {
        padding: 0 20px;
    }

    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookies-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .portfolio-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .modal-content {
        margin: 10px;
    }

    .modal-body {
        padding: 20px;
    }

    .form-group-pro {
        margin-bottom: 20px;
    }

    .contact-form > div {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .cookies-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .project-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .cookies-banner,
    .mobile-toggle,
    .project-overlay,
    .modal,
    header {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }
}