/* ===========================
   CSS Variables & Reset
   =========================== */

:root {
    /* Colors */
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --gradient-1: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
    --gradient-3: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background-white);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Navigation
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all var(--transition-normal);
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #eff6ff;
}

/* Orbs removidos - background simplificado */

.orb-1,
.orb-2,
.orb-3 {
    display: none;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

/* Animação float removida - não utilizada */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
    transition: transform var(--transition-slow);
}

.hero-image:hover {
    transform: scale(1.05);
}

.image-decoration {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-text {
    text-align: left;
}

.hero-greeting {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cursor {
    animation: blink 1s infinite;
    color: var(--secondary-color);
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 15px;
}

.verified-badge {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.citizenship-badges {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.flag-image {
    width: 42px;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-normal);
    cursor: pointer;
}

.flag-image:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

/* Cores específicas para cada rede social no hover */
.social-link.whatsapp:hover {
    background: #25D366 !important;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.social-link.linkedin:hover {
    background: #0077B5 !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

.arrow {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.arrow span {
    width: 15px;
    height: 2px;
    background: var(--primary-color);
    transform: rotate(45deg);
    animation: arrow-bounce 2s infinite;
}

.arrow span:nth-child(2) {
    transform: rotate(-45deg);
    margin-left: -7px;
}

@keyframes arrow-bounce {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(5px) rotate(45deg);
    }
}

/* ===========================
   Section Styles
   =========================== */

.about-section,
.competencies-section,
.expertise-section,
.contact-section {
    padding: var(--section-padding);
}

.about-section {
    background-color: var(--background-white);
}

.competencies-section {
    background-color: var(--background-light);
}

.expertise-section {
    background-color: var(--background-white);
}

.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-section .section-title {
    color: white;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0 auto 15px;
    border-radius: 2px;
}

.contact-section .title-underline {
    background: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   About Section
   =========================== */

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.highlight {
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* About: tags block (clean + consistent) */
.about-text .about-tags {
    margin-top: 40px;   /* só espaçamento, sem linha */
    padding-top: 0;
    border-top: none;
}


.about-tags .experience-skills {
    margin-top: 0;
    gap: 12px;
}




/* ===========================
   Competencies Section
   =========================== */

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.competency-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
    cursor: pointer;
}

.competency-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all var(--transition-normal);
}

.competency-card:nth-child(2) .card-icon {
    background: var(--gradient-2);
}

.competency-card:nth-child(3) .card-icon {
    background: var(--gradient-3);
}

.competency-card:nth-child(4) .card-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.competency-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.competency-card:hover .card-hover-effect {
    opacity: 1;
}

/* ===========================
   Expertise Section
   =========================== */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.expertise-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--background-light);
    border-radius: 15px;
    transition: all var(--transition-normal);
}

.expertise-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.expertise-icon {
    flex-shrink: 0;
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.expertise-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.expertise-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===========================
   Professional Experience Section
   =========================== */

.experience-section {
    padding: var(--section-padding);
    background-color: #eff6ff;
}

.experience-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Timeline line */
.experience-timeline::before {
    content: '';
    position: absolute;
    left: 120px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
}

.experience-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.experience-item:last-child {
    margin-bottom: 0;
}

/* Timeline dot */
.experience-item::before {
    content: '';
    position: absolute;
    left: 111px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border: 3px solid var(--background-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
    z-index: 2;
}

.experience-date {
    text-align: right;
    padding-right: 20px;
}

.experience-date .year {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.experience-date .duration {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.experience-content {
    background: var(--background-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--secondary-color);
}

.experience-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-left-color: var(--accent-color);
}

.experience-header {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.experience-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.experience-company {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience-company i {
    font-size: 1rem;
}

/* Company link styling (avoid default blue link) */
.experience-company a,
.experience-company a:visited {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
}

.experience-company a:hover,
.experience-company a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.experience-location {
    font-size: 0.95rem;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.experience-location i {
    font-size: 0.85rem;
}

.experience-description p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.experience-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.experience-highlights li {
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.experience-highlights li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.skill-tag {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    transition: all var(--transition-fast);
}

.skill-tag:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.experience-cta {
    text-align: center;
    margin-top: 60px;
}

.experience-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===========================
   Contact Section
   =========================== */

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: white;
    font-weight: 600;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: white;
}

.social-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-section h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 20px;
    text-align: center;
}

.social-links-contact {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-btn.whatsapp:hover {
    background: #25D366;
}

.social-btn.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.linkedin:hover {
    background: #0077B5;
}

.social-btn i {
    font-size: 1.3rem;
}

.social-btn span {
    font-size: 1rem;
}


.qr-code-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.qr-code-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.qr-code-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.qr-code-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.qr-code-image {
    margin-bottom: 20px;
}

.qr-code-image img {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.qr-instruction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.qr-instruction i {
    color: var(--secondary-color);
}

/* ===========================
   Footer
   =========================== */

.footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-name {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: white;
}

.footer-separator {
    opacity: 0.5;
    font-size: 0.8rem;
}

.footer-title {
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* ===========================
   Scroll to Top Button
   =========================== */

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image-container {
        order: -1;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-info {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .image-decoration {
        width: 270px;
        height: 270px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-item {
        padding: 20px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .contact-details h3 {
        font-size: 0.9rem;
    }
    
    .contact-details a {
        font-size: 0.95rem;
    }
    
    .social-section {
        padding: 25px 20px;
    }
    
    .social-section h3 {
        font-size: 1.1rem;
    }
    
    .social-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .social-btn i {
        font-size: 1.1rem;
    }
    
    .qr-code-card {
        padding: 30px 20px;
    }
    
    .qr-code-card h3 {
        font-size: 1.3rem;
    }
    
    .qr-code-image img {
        width: 220px;
        height: 220px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Experience Section - Mobile */
    .experience-timeline::before {
        left: 20px;
    }
    
    .experience-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-left: 50px;
    }
    
    .experience-item::before {
        left: 11px;
        top: 8px;
    }
    
    .experience-date {
        text-align: left;
        padding-right: 0;
        margin-bottom: 10px;
    }
    
    .experience-date .year {
        display: inline;
        margin-right: 10px;
    }
    
    .experience-date .duration {
        display: inline;
    }
    
    .experience-content {
        padding: 20px;
    }
    
    .experience-title {
        font-size: 1.3rem;
    }
    
    .experience-company {
        font-size: 1rem;
    }
    
    .experience-skills {
        gap: 8px;
    }
    
    .skill-tag {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-image {
        width: 200px;
        height: 200px;
    }
    
    .image-decoration {
        width: 220px;
        height: 220px;
    }
    
    .citizenship-badges {
        justify-content: center;
    }
    
    .social-links-contact {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-link-large {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   Animation Classes
   =========================== */

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}
