/* Base Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #2a2a2a;
    color: #ffffff;
    overflow-x: hidden;
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* Navigation */
.navbar {
    background-color: #2a2a2a;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: #2a2a2a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

.nav-link {
    color: #e0e0e0 !important;
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #e0e0e0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #ffffff !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Sections Container */
.sections-container {
    height: 100vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-top: 0;
    background: #2a2a2a;
    width: 100%;
}

/* Section Styles */
.section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 0;
    margin: 2rem 0;
    border-top: 1px solid #404040;
    border-bottom: 1px solid #404040;
    box-sizing: border-box;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #404040, transparent);
}

.section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #404040, transparent);
}

/* Container Styles */
.container {
    position: relative;
    z-index: 1;
    padding: 2rem;
    background: rgba(42, 42, 42, 0.7);
    border-radius: 15px;
    border: 1px solid #404040;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

/* Section Title Enhancement */
.section-title {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #404040, transparent);
}

/* Hero Section Special Treatment */
#hero.section {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

#hero.section::before {
    display: none;
}

/* Last Section Special Treatment */
.section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section:last-child::after {
    display: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    background: #2a2a2a;
    color: #ffffff;
}

.name-highlight {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.lead {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.cro-highlight {
    color: #ffffff;
    font-weight: bold;
}

.partner-text {
    color: #e0e0e0;
    font-weight: bold;
}

/* Profile Image */
.profile-image-container {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid rgba(0, 180, 216, 0.4);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
    transition: all 0.3s ease;
}

.profile-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.5);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.custom-btn {
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    background: none;
    color: #ffffff;
    font-weight: 500;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #e0e0e0;
    color: #2a2a2a;
    transform: translateY(-2px);
}

.btn-filled {
    background: #e0e0e0;
    color: #2a2a2a;
    border: none;
}

.btn-filled:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

/* Projects Section */
#projects {
    background: #2a2a2a;
}

.section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.section-title::after {
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
}

.project-slider {
    position: relative;
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateX(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.project-slider.slide-left {
    transform: translateX(-100%);
    opacity: 0;
}

.project-slider.slide-right {
    transform: translateX(100%);
    opacity: 0;
}

.project-image, .portfolio-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
    transition: all 0.3s ease;
    background-color: #333333;
}

.project-image:hover, .portfolio-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.5);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    color: white;
}

.project-info, .portfolio-content {
    background: #333333;
    border: 1px solid #404040;
    padding: 2rem;
    border-radius: 15px;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.project-info:hover, .portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.project-info h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.project-info p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.tech-tag {
    all: unset;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    margin-right: 8px;
}

.project-tech {
    margin: 1rem 0;
    line-height: 1.5;
}

.project-link, .portfolio-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border: 1px solid #ffffff;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.project-link:hover, .portfolio-link:hover {
    background: #ffffff;
    color: #2a2a2a;
    transform: translateX(5px);
}

/* Skills Section */
#skills {
    background: #2a2a2a;
}

/* Ajustement de l'alignement des colonnes */
#skills .row {
    justify-content: space-between;
}

#skills .col-md-6:first-child {
    padding-right: 2rem;
}

#skills .col-md-6:last-child {
    padding-left: 2rem;
}

.skill-card {
    background: #333333;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: left;
    margin-bottom: 1rem;
    color: #ffffff;
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #404040;
}

.skill-icon {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.skill-progress {
    background: #505050;
    height: 100%;
    border-radius: 2px;
}

.skill-progress::after {
    background: #ffffff;
}

/* Navigation Arrows */
.section-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    cursor: pointer;
    background: #333333;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.section-nav:hover {
    transform: translateX(-50%) translateY(5px);
    color: #ffffff;
    background: #404040;
}

.section-nav i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .name-highlight {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.3rem;
    }

    .profile-image-container {
        width: 250px;
        height: 250px;
        margin: 2rem auto;
    }
}

@media (max-width: 768px) {
    .name-highlight {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.3rem;
    }

    .profile-image-container {
        width: 200px;
        height: 200px;
    }

    .custom-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    #skills .col-md-6:first-child,
    #skills .col-md-6:last-child {
        padding: 0 1rem;
    }

    .section {
        padding: 4rem 0;
        margin: 1rem 0;
    }

    .container {
        padding: 1.5rem;
    }

    .section-title::before {
        width: 100px;
    }
}

@media (max-width: 576px) {
    .name-highlight {
        font-size: 1.8rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .profile-image-container {
        width: 150px;
        height: 150px;
    }

    .custom-btn {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
}

/* Other Pages Container */
.container.mt-5 {
    padding-top: 100px; /* Ajout d'un padding-top pour compenser la navbar fixe */
}

/* CV Page Styles */
.cv-container {
    background: #333333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #404040;
}

.cv-section {
    background: #404040;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #505050;
}

.cv-section-title {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 180, 216, 0.4);
}

.cv-section-title i {
    margin-right: 10px;
    color: #3498db;
}

.skills-grid {
    display: grid;
    gap: 1rem;
}

.cv-skill-card {
    background: #333333;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #404040;
}

.cv-skill-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cv-skill-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.skill-category {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #404040;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #404040;
}

.timeline-content {
    background: #333333;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #404040;
}

.timeline-content h3 {
    color: #ffffff;
    margin: 0.2rem 0;
    font-size: 1.3rem;
}

.timeline-content h4 {
    color: #e0e0e0;
    margin: 0.2rem 0;
    font-size: 1.1rem;
}

.timeline-date {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.timeline-description {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

/* Portfolio Page Styles */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-card {
    background: #333333;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background-color: #333333;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.portfolio-content p {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.portfolio-tech {
    margin-bottom: 1rem;
}

.portfolio-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #ffffff;
    border-radius: 20px;
}

.portfolio-link:hover {
    background: #ffffff;
    color: #2a2a2a;
    transform: translateX(5px);
}

.portfolio-link i {
    margin-right: 5px;
}

/* Experience Fields Styles */
.experience-field {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 180, 216, 0.2);
}

.experience-field:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.field-label {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-level {
    background: rgba(255, 255, 255, 0.1);
    height: 10px;
    border-radius: 5px;
    margin: 1rem 0;
    overflow: hidden;
}

.skill-progress {
    background: linear-gradient(90deg, #00b4d8 0%, #0077b6 100%);
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
}

/* Contact Page Styles */
.contact-container {
    background: #333333;
    border: 1px solid #404040;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: #404040;
    border: 1px solid #505050;
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    background: #505050;
}

.contact-icon {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-card p {
    color: #e0e0e0;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #e0e0e0;
    transform: translateY(-3px);
}

.contact-form {
    background: #404040;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #505050;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: #333333;
    border: 1px solid #505050;
    border-radius: 5px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: #404040;
}

.submit-btn {
    background: #ffffff;
    color: #2a2a2a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

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

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

@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }
    
    .contact-form {
        margin-top: 2rem;
    }
}

/* Suppression des animations de typing */
.typing-animation,
.typing-animation-2,
.typing-animation-3 {
    opacity: 1;
    border-right: none;
    animation: none;
}

/* Suppression des keyframes */
@keyframes typing {
    from { width: 100% }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: transparent }
}

.buy-button-container,
.buy-button,
.buy-button:hover,
.buy-button i {
    /* Styles supprimés */
}

/* Testimonials Styles */
.testimonials-container {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 180, 216, 0.4);
}

.testimonial-card {
    background: #333333;
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid #404040;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 2px solid rgba(0, 180, 216, 0.4);
    object-fit: cover;
    object-position: center;
}

.testimonial-info h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
}

.testimonial-role {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.9rem;
}

.testimonial-content {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-rating {
    color: #00b4d8;
}

.testimonial-rating .fa-star.active {
    color: #ffd700;
}

/* FAQ Styles */
.faq-container {
    background: rgba(26, 26, 46, 0.9);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 180, 216, 0.4);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #333333;
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #404040;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #404040;
}

.faq-question h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* Skills Description Styles */
.skills-description {
    background: #333333;
    padding: 2rem;
    border-radius: 4px;
    border: 1px solid #404040;
    height: 100%;
}

.skills-description h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.skills-description h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.skills-description p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.skills-description ul {
    list-style-type: none;
    padding-left: 0;
    margin: 1rem 0;
}

.skills-description ul li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.1rem;
}

.skills-description ul li:before {
    content: '•';
    color: #ffffff;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .skills-description {
        margin-top: 2rem;
    }
}

.cv-intro, .portfolio-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #333333;
    border-radius: 15px;
    border: 1px solid #404040;
}

.intro-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 1.5rem auto;
}

.download-cv-btn {
    background: #ffffff;
    color: #2a2a2a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.download-cv-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

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

.download-cv-btn:hover i {
    transform: translateY(2px);
}

/* Footer Styles */
.footer {
    background: #333333;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid #404040;
    width: 100%;
    box-sizing: border-box;
}

.footer h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: rgba(0, 180, 216, 0.4);
}

.footer p {
    color: #e0e0e0;
    line-height: 1.6;
}

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

.footer-contact li {
    color: #e0e0e0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact li i {
    color: #ffffff;
    font-size: 1.2rem;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer .social-link {
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer .social-link:hover {
    color: #e0e0e0;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #404040;
    text-align: center;
}

.footer-bottom p {
    color: #e0e0e0;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer h3 {
        margin-top: 2rem;
    }

    .footer h3:first-child {
        margin-top: 0;
    }
}