/* project.css - Projects Page Specific Styles */

/* IMPORTANT: Use same CSS variables as header/footer */
:root {
    --primary: #f97316;      /* Changed from --primary-color */
    --dark: #0f172a;         /* Changed from --dark-color */
    --white: #ffffff;
    --light-bg: #f8fafc;
    --text-main: #1e293b;
    --text-dim: #64748b;
    
    /* New variables for projects page */
    --accent: #10b981;       /* Changed from --accent-color */
    --gray: #64748b;         /* Changed from --gray-color */
    --light: #f8fafc;        /* Changed from --light-color */
    --border-radius: 16px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

body {
        background-color: var(--light-bg);
        color: var(--text-main);
        line-height: 1.6;
        overflow-x: hidden;
        min-height: 100vh;
      }

      

/* Projects Page Specific */
.projects-page {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.projects-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.projects-hero {
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.projects-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    z-index: -1;
}

.projects-title {
        font-size: 2.8rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--dark);
      }

      .projects-title span {
        color: var(--primary);
      }


.projects-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Stats */
.projects-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.stat {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-width: 150px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #f59e0b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.stat:hover::before {
    transform: scaleX(1);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Filter Section */
.projects-filter {
    padding: 40px 0;
    background: var(--white);
    top: 80px;
    z-index: 100;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--light-bg);
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    white-space: nowrap;
}

.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}

.search-box {
    position: relative;
    min-width: 300px;
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    background: var(--light-bg);
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

/* Layout Controls */
.layout-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.layout-btn {
    padding: 10px 20px;
    background: var(--light-bg);
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.layout-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.2);
}

/* Projects Grid */
.projects-grid-section {
    padding: 40px 0 80px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-live {
    background: linear-gradient(135deg, var(--accent), #059669);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.badge-progress {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.project-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(249, 115, 22, 0.9),  /* Changed to --primary color */
        rgba(15, 23, 42, 0.9)     /* Changed to --dark color */
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 15px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
}

.project-card:hover .overlay-btn {
    transform: translateY(0);
    opacity: 1;
}

.overlay-btn:nth-child(1) { transition-delay: 0.1s; }
.overlay-btn:nth-child(2) { transition-delay: 0.2s; }

.overlay-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-5px) !important;
}

.project-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.project-content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Project Meta */
.project-meta {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--gray);
    background: var(--light-bg);
    padding: 5px 10px;
    border-radius: 15px;
}

.project-meta i {
    color: var(--primary);
    font-size: 0.9rem;
}

.complexity {
    color: #f59e0b !important;
    background: rgba(245, 158, 11, 0.1) !important;
}

.hours {
    color: var(--primary) !important;
    background: rgba(249, 115, 22, 0.1) !important;
}

.team {
    color: var(--accent) !important;
    background: rgba(16, 185, 129, 0.1) !important;
}

/* Progress Container */
.progress-container {
    margin: 15px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.85rem;
    color: var(--gray);
}

.progress-label span:last-child {
    font-weight: 700;
    color: var(--primary);
}

.progress-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 3px;
    transition: width 1s ease;
}

/* Project Tech */
.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-tag {
    padding: 6px 12px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark);
    border: 1px solid #e2e8f0;
}

/* Project Footer */
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    margin-top: auto;
}

.project-date {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-date i {
    color: var(--primary);
}

.project-link {
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-link:hover {
    background: var(--dark);
    transform: translateX(5px);
}

/* List View */
.projects-grid.list-view {
    grid-template-columns: 1fr !important;
    gap: 20px;
}

.list-view .project-card {
    flex-direction: row;
    height: auto;
}

.list-view .project-image {
    width: 300px;
    height: auto;
    min-height: 200px;
    flex-shrink: 0;
}

.list-view .project-content {
    flex: 1;
    padding: 25px 30px;
}

.list-view .project-badge {
    position: static;
    margin: 20px 0 0 20px;
    align-self: flex-start;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 40px;
    display: none;
}

.load-more-btn {
    padding: 15px 40px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.load-more-btn:hover {
    background: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.3);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.empty-state i {
    font-size: 4rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--gray);
    max-width: 400px;
    margin: 0 auto;
}

/* CTA Section */
.projects-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    position: relative;
    overflow: hidden;
}

.projects-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="white"/></svg>');
    background-size: 100% 100px;
    background-position: top center;
    background-repeat: no-repeat;
}

.cta-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--white);
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Project Modal */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.project-modal.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 40px;
}

/* Modal Content Styles */
.modal-project {
    max-width: 100%;
}

.modal-header {
    margin-bottom: 30px;
}

.modal-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.client-badge {
    padding: 6px 12px;
    background: var(--light-bg);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.complexity-badge {
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.3;
}

.modal-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--gray);
    margin-top: 10px;
}

.modal-image {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-section h3,
.tech-section h3,
.progress-section h3,
.features-section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h3 i { color: var(--primary); }
.tech-section h3 i { color: var(--primary); }
.progress-section h3 i { color: #f59e0b; }
.features-section h3 i { color: var(--accent); }

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.detail-item {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-item strong {
    color: var(--gray);
    font-size: 0.9rem;
}

.detail-item span {
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag-large {
    padding: 10px 20px;
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.progress-details {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
}

.progress-bar-large {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
}

.progress-fill-large {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 6px;
    position: relative;
    transition: width 1s ease;
}

.progress-fill-large span {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.8rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.progress-text {
    color: var(--gray);
    font-size: 0.95rem;
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

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

.features-list li {
    padding: 12px 0;
    color: var(--dark);
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.action-btn {
    flex: 1;
    min-width: 200px;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.action-btn.primary:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

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

.action-btn.secondary:hover {
    background: #1e293b;
    transform: translateY(-3px);
}

.action-btn.outline {
    background: transparent;
    color: var(--gray);
    border-color: #e2e8f0;
}

.action-btn.outline:hover {
    background: var(--light-bg);
    color: var(--dark);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media (max-width: 992px) {
    .projects-title {
        font-size: 2.8rem;
    }
    
    .projects-stats {
        gap: 20px;
    }
    
    .stat {
        min-width: 120px;
        padding: 20px;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        min-width: 100%;
    }
    
    .list-view .project-card {
        flex-direction: column;
    }
    
    .list-view .project-image {
        width: 100%;
        height: 200px;
    }
    
    .modal-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 100px 0 40px;
    }
    
    .projects-title {
        font-size: 2.2rem;
    }
    
    .projects-subtitle {
        font-size: 1.1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projects-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 200px;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .modal-header h2 {
        font-size: 1.8rem;
    }
    
    .modal-image img {
        height: 250px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .action-btn {
        min-width: 100%;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .projects-title {
        font-size: 2rem;
    }
    
    .projects-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .projects-stats {
        gap: 15px;
    }
    
    .stat {
        width: 45%;
        min-width: auto;
        padding: 20px 15px;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .project-card {
        margin-bottom: 20px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .modal-image img {
        height: 200px;
    }
    
    .tech-tag-large {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .projects-title {
        font-size: 1.8rem;
    }
    
    .projects-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .stat {
        width: 48%;
        padding: 15px 10px;
    }
    
    .stat h3 {
        font-size: 1.6rem;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .layout-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .project-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .modal-description {
        font-size: 1rem;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .features-list li {
        padding: 10px 0;
        font-size: 0.95rem;
    }
}


  .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
        }

        .logo span {
            color: var(--primary);
        }

        .nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav a {
            text-decoration: none;
            color: var(--text-main);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
        }

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

        .nav-contact {
            background: var(--dark);
            color: var(--white) !important;
            padding: 10px 24px !important;
            border-radius: 50px;
        }

        .nav-contact:hover {
            background: var(--primary) !important;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 5% 40px;
            margin-top: 100px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 60px;
        }

        .footer h3 {
            color: var(--primary);
            font-size: 1.4rem;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.95rem;
        }