/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #f5c518;
    --primary-dark: #d4a90e;
    --navy: #0a1628;
    --navy-light: #132039;
    --dark: #0d1b2a;
    --text: #333;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: var(--navy);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

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

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

.nav-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-link--cta {
    background: var(--primary);
    color: var(--navy) !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 8px 24px;
}

.nav-link--cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.nav-close {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1a2d4a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-greeting {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-name {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

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

.hero-title {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-desc {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-image-wrapper {
    width: 360px;
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    background: transparent;
    border: 3px solid rgba(245,197,24,0.25);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: saturate(0.9) contrast(1.05);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.hero-image-wrapper:hover .hero-photo {
    transform: scale(1.04);
    filter: saturate(1) contrast(1.08);
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(245,197,24,0.4);
}

.hero-image-placeholder i {
    font-size: 5rem;
}

.hero-image-placeholder p {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.5), transparent);
    z-index: 3;
    pointer-events: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-image-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    filter: blur(30px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Section Styles ===== */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: var(--gray-50);
}

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

.section-tag {
    display: inline-block;
    background: rgba(245, 197, 24, 0.12);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
}

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

.about-lead {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-languages h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.language-item {
    display: grid;
    grid-template-columns: 100px 60px 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.language-name {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}

.language-level {
    font-size: 0.8rem;
    color: var(--text-light);
}

.language-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.language-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    transition: width 1s ease;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 197, 24, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-dark);
    font-size: 1.2rem;
}

.highlight-card h4 {
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.highlight-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== Skills ===== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.skill-card {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    text-align: center;
}

.skill-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.skill-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 1.5rem;
}

.skill-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 16px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tags span {
    background: var(--gray-100);
    color: var(--text);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    transition: var(--transition);
}

.skill-card:hover .skill-tags span {
    background: rgba(245, 197, 24, 0.1);
    color: var(--navy);
}

/* ===== Education Timeline ===== */
.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--gray-200));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

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

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 6px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.timeline-date {
    display: inline-block;
    background: rgba(245, 197, 24, 0.12);
    color: var(--primary-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 4px;
}

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

/* ===== Experience ===== */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.exp-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.exp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.exp-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.exp-company-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.exp-header h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.exp-company {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.exp-date {
    display: inline-block;
    background: rgba(245, 197, 24, 0.12);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 50px;
}

.exp-list {
    padding-left: 20px;
}

.exp-list li {
    list-style: disc;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* ===== Certificates ===== */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cert-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.cert-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--navy);
    font-size: 1.3rem;
}

.cert-card h4 {
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.5;
}

/* ===== Showroom ===== */
.showroom {
    background: var(--navy) !important;
}

.showroom .section-tag {
    background: rgba(245, 197, 24, 0.15);
}

.showroom .section-title {
    color: var(--white);
}

.section-subtitle {
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
    margin-top: 12px;
}

.showroom-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--navy);
    border-color: var(--primary);
    font-weight: 600;
}

.showroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}
.showroom-page .showroom-grid {
    max-width: 100%;
}
/* When only 1-2 projects, limit card width and center */
.showroom-grid:has(.project-card:only-child) {
    grid-template-columns: minmax(340px, 600px);
    justify-content: center;
}
.showroom-preview .showroom-grid:has(.project-card:only-child) {
    grid-template-columns: minmax(340px, 500px);
    justify-content: center;
}

.project-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(245,197,24,0.25);
}

.project-thumb {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1f3c, #162a4a, #0d1f3c);
}

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

.project-card:hover .project-thumb img {
    transform: scale(1.08);
}

.project-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(245,197,24,0.03) 0%, rgba(245,197,24,0.08) 50%, rgba(245,197,24,0.03) 100%);
    position: relative;
}
.project-thumb-placeholder::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
}
.project-thumb-placeholder i {
    font-size: 2.8rem;
    color: var(--primary);
    opacity: 0.6;
    z-index: 1;
}
.project-thumb-placeholder span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    z-index: 1;
}

.project-status {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.completed {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.project-status.in-progress {
    background: rgba(245, 197, 24, 0.15);
    color: var(--primary);
    border: 1px solid rgba(245, 197, 24, 0.25);
}

.project-status.planned {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.project-body {
    padding: 24px;
}

.project-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.project-body h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 700;
}

.project-body p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.project-tech span {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.06);
}

.project-links {
    display: flex;
    gap: 10px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.project-link--demo {
    background: var(--primary);
    color: var(--navy);
}

.project-link--demo:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.project-link--github {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.1);
}

.project-link--github:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    transform: translateY(-1px);
}

.project-link--soon {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.35);
    border: 1px dashed rgba(255,255,255,0.15);
    cursor: default;
    font-style: italic;
}

.showroom-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(255,255,255,0.3);
    grid-column: 1 / -1;
}

.showroom-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

/* ===== Contact ===== */
.contact {
    background: var(--navy) !important;
}

.contact .section-tag {
    background: rgba(245, 197, 24, 0.15);
}

.contact .section-title {
    color: var(--white);
}

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

.contact-intro {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--primary);
    transform: translateX(6px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(245, 197, 24, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-card h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

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

.footer-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

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

.footer p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* ===== Page Header (sub-pages) ===== */
.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-header--dark {
    background: linear-gradient(135deg, var(--navy) 0%, #0d2137 50%, var(--navy-light) 100%);
}

.page-header .page-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.page-header .page-subtitle {
    color: rgba(255,255,255,0.45);
    font-size: 1rem;
}

.page-header .section-tag {
    background: rgba(245, 197, 24, 0.15);
}

/* Always-scrolled navbar for sub-pages */
.navbar.scrolled-always {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
}

/* Active nav link */
.nav-link.active {
    color: var(--primary) !important;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: var(--gray-50);
}

.cta-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-box h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-box p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
}

/* Background helper */
.bg-gray { background: var(--gray-50); }

/* ===== About Page ===== */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-photo-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(245,197,24,0.2);
    aspect-ratio: 3/4;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.about-info-col h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.about-role {
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.about-bio {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.detail-item i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(245,197,24,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 0.85rem;
}

/* Languages Page */
.languages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.lang-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.lang-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.lang-flag {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
}

.lang-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.lang-level {
    color: var(--text-light);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 14px;
}

.lang-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 10px;
    overflow: hidden;
}

.lang-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== Showroom Page ===== */
.showroom-page {
    background: var(--navy);
    padding-top: 60px;
}
.showroom-page .showroom-filters {
    margin-bottom: 48px;
}
.showroom-page .filter-btn {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.75);
}
.showroom-page .filter-btn:hover {
    border-color: var(--primary);
    color: #fff;
    background: rgba(245,197,24,0.1);
}
.showroom-page .filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--navy);
}

.showroom-preview {
    background: var(--navy) !important;
}

.showroom-preview .section-tag {
    background: rgba(245,197,24,0.15);
}

.showroom-preview .section-title {
    color: var(--white);
}

/* ===== Contact Page ===== */
.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-page .contact-info h2,
.contact-page .contact-form-wrapper h2 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.contact-page .contact-intro {
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.8;
}

.contact-page .contact-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}

.contact-page .contact-card:hover {
    background: var(--white);
    border-color: var(--primary);
    transform: translateX(6px);
}

.contact-page .contact-card-icon {
    background: rgba(245,197,24,0.12);
    color: var(--primary-dark);
}

.contact-page .contact-card h4 {
    color: var(--navy);
}

.contact-page .contact-card p {
    color: var(--text-light);
}

.contact-page .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    background: var(--gray-50);
    border: 2px solid var(--gray-200);
    color: var(--text);
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
    color: var(--text-light);
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(245,197,24,0.1);
}

/* ===== Footer Multi-page ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 24px;
}

.footer-brand p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin-top: 12px;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* ===== Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NEW: Utility Classes ===== */
.gradient-text {
    background: linear-gradient(135deg, #f5c518, #ffd700, #f5c518);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
}

.glow-hover:hover {
    box-shadow: 0 0 30px rgba(245,197,24,0.15);
}

/* ===== NEW: Hero Enhancements ===== */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(2px 2px at 20% 30%, rgba(245,197,24,0.25), transparent),
        radial-gradient(2px 2px at 80% 20%, rgba(245,197,24,0.2), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 60% 50%, rgba(245,197,24,0.15), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(245,197,24,0.2), transparent),
        radial-gradient(1.5px 1.5px at 50% 10%, rgba(255,255,255,0.2), transparent),
        radial-gradient(1.5px 1.5px at 70% 80%, rgba(245,197,24,0.18), transparent);
    background-size: 250px 250px;
    animation: particleDrift 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,0.02) 50px),
        repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,0.02) 50px);
    pointer-events: none;
    z-index: 0;
}

@keyframes particleDrift {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-30px, -20px); }
    100% { transform: translate(0, 0); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(8px) rotate(-1deg); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(245,197,24,0.2); }
    50% { border-color: rgba(245,197,24,0.5); }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatDot {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(10px, -20px) scale(1.2); opacity: 1; }
    50% { transform: translate(-5px, -10px) scale(0.8); opacity: 0.4; }
    75% { transform: translate(-15px, 5px) scale(1.1); opacity: 0.8; }
}

/* Hero animated gradient background */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 25%, #1a2d4a 50%, var(--navy-light) 75%, var(--navy) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Pulsing glow behind hero image */
.hero-image-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}

/* Hero name text shadow glow */
.hero-name {
    text-shadow: 0 0 40px rgba(245,197,24,0.1);
}

.hero-name span {
    text-shadow: 0 0 60px rgba(245,197,24,0.3);
}

/* Floating shapes animation */
.shape-1 { animation: floatShape 8s ease-in-out infinite; }
.shape-2 { animation: floatShape 10s ease-in-out infinite 1s; }
.shape-3 { animation: floatShape 7s ease-in-out infinite 2s; }

/* Hero floating decorative elements */
.hero-float-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-float-dot:nth-child(1) {
    width: 8px; height: 8px;
    background: rgba(245,197,24,0.4);
    top: 20%; left: 10%;
    animation: floatDot 6s ease-in-out infinite;
}

.hero-float-dot:nth-child(2) {
    width: 12px; height: 12px;
    background: rgba(245,197,24,0.25);
    top: 60%; left: 5%;
    animation: floatDot 8s ease-in-out infinite 1s;
}

.hero-float-dot:nth-child(3) {
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.3);
    top: 30%; right: 8%;
    animation: floatDot 7s ease-in-out infinite 2s;
}

.hero-float-dot:nth-child(4) {
    width: 10px; height: 10px;
    background: rgba(245,197,24,0.3);
    bottom: 25%; right: 12%;
    animation: floatDot 9s ease-in-out infinite 0.5s;
}

/* Dot grid in hero */
.hero-dot-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(245,197,24,0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

/* Wave divider (legacy cleanup - main styles in section below) */
.page-header {
    position: relative;
    overflow: hidden;
}

.hero .wave-divider svg {
    color: var(--white);
}

.showroom-page + .footer .wave-divider svg,
.page-header--dark .wave-divider svg {
    color: var(--navy);
}

/* ===== NEW: Card Enhancements ===== */
/* Glassmorphism + shimmer for cards */
.skill-card,
.exp-card,
.cert-card,
.highlight-card {
    position: relative;
    overflow: hidden;
}

.skill-card::before,
.exp-card::before,
.cert-card::before,
.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245,197,24,0.06), transparent);
    transition: none;
    pointer-events: none;
    z-index: 1;
}

.skill-card:hover::before,
.exp-card:hover::before,
.cert-card:hover::before,
.highlight-card:hover::before {
    animation: shimmer 0.8s ease forwards;
}

/* 3D perspective hover for cards */
.skill-card:hover {
    transform: perspective(1000px) rotateY(2deg) translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 30px rgba(245,197,24,0.08);
    border-color: var(--primary);
}

.exp-card:hover {
    transform: perspective(1000px) rotateY(-1deg) translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), 0 0 20px rgba(245,197,24,0.06);
}

.cert-card:hover {
    transform: perspective(1000px) rotateY(1.5deg) translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1), 0 0 20px rgba(245,197,24,0.06);
}

.highlight-card:hover {
    transform: perspective(1000px) rotateY(-2deg) translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 0 25px rgba(245,197,24,0.08);
}

/* Gradient border on hover using pseudo-element */
.skill-card::after,
.exp-card::after,
.cert-card::after,
.highlight-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), transparent, var(--primary));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.skill-card:hover::after,
.exp-card:hover::after,
.cert-card:hover::after,
.highlight-card:hover::after {
    opacity: 1;
    animation: gradientBorder 3s ease infinite;
}

/* Project card enhancements */
.project-card {
    position: relative;
    overflow: hidden;
}

.project-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245,197,24,0.0), rgba(10,22,40,0.0));
    transition: background 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover .project-thumb::after {
    background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(10,22,40,0.4));
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4), 0 0 40px rgba(245,197,24,0.08);
    border-color: rgba(245,197,24,0.35);
}

.project-thumb-placeholder i {
    transition: transform 0.4s ease, color 0.4s ease;
}

.project-card:hover .project-thumb-placeholder i {
    transform: scale(1.2);
    color: rgba(245,197,24,0.5);
}

/* ===== NEW: Typography ===== */
.section-title {
    background: linear-gradient(135deg, var(--navy), #1a2d4a, var(--navy));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Override for dark bg sections where gradient text wouldn't show */
.showroom-preview .section-title,
.page-header .page-title {
    background: linear-gradient(135deg, #ffffff, #e0e0e0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NEW: Page Header Enhancements ===== */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(3px 3px at 15% 25%, rgba(245,197,24,0.2), transparent),
        radial-gradient(3px 3px at 85% 35%, rgba(245,197,24,0.15), transparent),
        radial-gradient(2px 2px at 45% 65%, rgba(255,255,255,0.1), transparent),
        radial-gradient(2px 2px at 75% 75%, rgba(245,197,24,0.12), transparent);
    background-size: 300px 300px;
    animation: particleDrift 25s linear infinite;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 40px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(245,197,24,0.12) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: 0.6;
    pointer-events: none;
}

/* ===== NEW: Contact Form Enhancements ===== */
.contact-page .form-group input,
.contact-page .form-group textarea {
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245,197,24,0.12), 0 0 20px rgba(245,197,24,0.06);
}

/* Send button ripple effect */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    width: 20px;
    height: 20px;
    animation: ripple 0.6s ease forwards;
    pointer-events: none;
}

/* ===== NEW: Footer Enhancements ===== */
.footer {
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    background-size: 200% 100%;
    animation: gradientBorder 4s ease infinite;
}

.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* ===== NEW: CTA Box Enhancements ===== */
.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245,197,24,0.1), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(245,197,24,0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===== NEW: Staggered card animations ===== */
.fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in:nth-child(6) { transition-delay: 0.5s; }

/* Smooth scale-up for interactive elements */
.btn,
.contact-card,
.lang-card,
.filter-btn,
.nav-link--cta {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover,
.filter-btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.contact-card:hover {
    transform: translateX(6px) scale(1.01);
}

.lang-card:hover {
    transform: translateY(-6px) scale(1.02);
}

/* Tilt effect target class (JS-driven) */
.tilt-card {
    transition: transform 0.15s ease;
    will-change: transform;
}

/* Counter animation helper */
.stat-number {
    display: inline-block;
    min-width: 2ch;
}

/* ===== Wide & Ultra-Wide Screens ===== */
@media (min-width: 1400px) {
    .container { max-width: 1340px; }
    .hero-content { gap: 100px; }
    .hero-name { font-size: 4.5rem; }
    .hero-desc { font-size: 1.15rem; max-width: 520px; }
    .hero-image-wrapper { width: 420px; height: 500px; }
    .hero-image-glow { width: 300px; height: 300px; }
    .hero-stats { gap: 48px; margin-top: 40px; }
    .stat-number { font-size: 2.4rem; }
    .skills-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .showroom-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .highlights-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
    .section { padding: 100px 0; }
    .section-title { font-size: 2.8rem; }
    .page-header .page-title { font-size: 3rem; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 60px; }
    .project-card { min-width: 360px; }
    .contact-grid { gap: 80px; }
    .exp-card { padding: 32px; }
    .experience-grid { gap: 28px; }
    .nav-menu { gap: 8px; }
    .nav-link { font-size: 15px; padding: 8px 18px; }
}

@media (min-width: 1600px) {
    .container { max-width: 1480px; }
    .hero-content { gap: 120px; }
    .hero-name { font-size: 5rem; }
    .hero-image-wrapper { width: 460px; height: 540px; }
    .hero-title { font-size: 1.5rem; }
    .hero-desc { font-size: 1.2rem; max-width: 560px; }
    .hero .container { padding: 0 40px; }
    .about-main { gap: 80px; }
    .cta-box { padding: 60px 80px; }
    .project-card { min-width: 400px; }
    .skill-card { padding: 36px 28px; }
    .skill-icon i { font-size: 2.2rem; }
    .contact-grid { gap: 100px; }
    .page-header { padding: 140px 0 60px; }
    .page-header .page-title { font-size: 3.2rem; }
    .footer-grid { gap: 80px; }
    .wave-divider svg { height: 80px; }
}

@media (min-width: 1920px) {
    .container { max-width: 1600px; }
    .hero-name { font-size: 5.5rem; }
    .hero-image-wrapper { width: 500px; height: 580px; }
    .hero-content { gap: 140px; }
    .section { padding: 120px 0; }
    .skills-grid { gap: 32px; }
    .showroom-grid { gap: 32px; }
    .project-card { min-width: 440px; }
    .skill-card { padding: 40px 32px; }
    .exp-card { padding: 36px; }
    .contact-grid { gap: 120px; }
    .page-header { padding: 160px 0 70px; }
    .page-header .page-title { font-size: 3.5rem; }
    .page-header .page-subtitle { font-size: 1.15rem; }
    .section-title { font-size: 3rem; }
    .footer { padding: 80px 0 30px; }
    .footer-grid { gap: 100px; }
    .nav-link { font-size: 16px; padding: 10px 20px; }
    .wave-divider svg { height: 100px; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image-wrapper { width: 280px; height: 340px; }
    .hero-image-glow { width: 200px; height: 200px; }
    .about-main { grid-template-columns: 1fr; }
    .about-photo-wrapper { max-width: 320px; margin: 0 auto; }
    .about-content { grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-page .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .showroom-grid { grid-template-columns: repeat(2, 1fr); }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-box { flex-direction: column; text-align: center; padding: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; text-align: center; gap: 24px; }
    .footer-links { display: flex; flex-direction: column; gap: 8px; }
    .footer-links a { display: block; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, var(--navy) 0%, #0d1d35 100%);
        flex-direction: column;
        align-items: stretch !important;
        padding: 90px 24px 40px;
        gap: 0;
        transition: var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
        border-left: 1px solid rgba(255,255,255,0.06);
        overflow-y: auto;
    }
    .nav-menu.active { right: 0; }
    .nav-close {
        position: absolute;
        top: 28px;
        right: 24px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        color: rgba(255,255,255,0.7);
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.2s ease;
    }
    .nav-close:hover {
        background: rgba(239,68,68,0.15);
        border-color: rgba(239,68,68,0.3);
        color: #ef4444;
    }
    .nav-link {
        display: block !important;
        padding: 16px 20px;
        width: 100%;
        font-size: 1.05rem;
        font-weight: 500;
        border-radius: 10px;
        transition: all 0.2s ease;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        letter-spacing: 0.3px;
        text-align: left;
    }
    .nav-link:last-of-type {
        border-bottom: none;
    }
    .nav-link:hover {
        background: rgba(245,197,24,0.06);
        padding-left: 28px;
    }
    .nav-link.active {
        background: rgba(245,197,24,0.1);
        color: var(--primary);
    }
    .nav-menu .nav-cta {
        display: block !important;
        margin-top: 24px;
        width: 100%;
        text-align: center;
        padding: 15px 24px;
        font-size: 1.05rem;
        border-radius: 12px;
    }
    .hero-name { font-size: 2.8rem; }
    .scroll-indicator { position: relative; bottom: auto; left: auto; transform: none; margin-top: 36px; }
    .page-header .page-title { font-size: 2rem; }
    .section { padding: 70px 0; }
    .section-title { font-size: 2rem; }
    .skills-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr 1fr; }
    .showroom-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
    .about-details { grid-template-columns: 1fr; }
    .languages-grid { grid-template-columns: 1fr; }
    .container { padding: 0 20px; }
    .page-header { padding: 100px 0 60px; }
    .footer-grid { gap: 28px; }
    .footer-links a { font-size: 0.9rem; }
    .contact-cards { gap: 12px; }
    .contact-card { padding: 16px; }
    .scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 0 60px; min-height: auto; padding-bottom: 80px; }
    .hero-name { font-size: 2.2rem; }
    .scroll-indicator { position: relative; bottom: auto; left: auto; transform: none; margin-top: 30px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .cert-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .highlight-card { padding: 20px; }
    .about-highlights { grid-template-columns: 1fr; }
    .section { padding: 50px 0; }
    .section-title { font-size: 1.6rem; }
    .section-tag { font-size: 0.7rem; padding: 6px 16px; }
    .page-header .page-title { font-size: 1.7rem; }
    .page-header .page-subtitle { font-size: 0.85rem; }
    .cta-box { padding: 32px 20px; }
    .cta-box h2 { font-size: 1.3rem; }
    .btn-download { padding: 12px 24px; font-size: 14px; }
    .footer { padding: 28px 0 14px; }
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 20px; text-align: left !important; }
    .footer-brand { grid-column: 1 / -1; text-align: center; }
    .footer-brand p { font-size: 0.82rem; margin-top: 4px; }
    .footer-links h4 { margin-bottom: 6px; font-size: 0.85rem; }
    .footer-links { gap: 3px !important; }
    .footer-links a { font-size: 0.82rem; padding: 2px 0; }
    .footer-social { gap: 12px; margin: 12px 0 10px; }
    .footer-bottom { padding-bottom: 8px; }
    .footer-bottom p { font-size: 0.75rem; }
    .social-link { width: 40px; height: 40px; font-size: 16px; }
    .contact-social .social-link { width: 40px; height: 40px; font-size: 16px; }
    .showroom-filters { gap: 8px; }
    .filter-btn { padding: 6px 16px; font-size: 13px; }
    .project-body { padding: 18px; }
    .project-body h3 { font-size: 1rem; }
    .project-body p { font-size: 0.8rem; }
    .project-tech span { font-size: 0.65rem; padding: 3px 8px; }
    .skill-card { padding: 24px 18px; }
    .exp-card { padding: 24px 18px; }
    .timeline-content { padding: 20px 16px; }
    .about-bio { font-size: 0.9rem; }
    .detail-item { font-size: 0.85rem; }
    .lang-card { padding: 24px 18px; }
}

/* =============================================================
   VISUAL RICHNESS ENHANCEMENTS
   ============================================================= */

/* ===== Animated Hero Particles ===== */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(245,197,24,0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 40% 70%, rgba(245,197,24,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 20%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 80% 50%, rgba(245,197,24,0.15) 0%, transparent 100%),
        radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 90%, rgba(245,197,24,0.25) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 10%, rgba(255,255,255,0.15) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 50%, rgba(245,197,24,0.2) 0%, transparent 100%);
    animation: particleDrift 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes particleDrift {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-15px) translateX(10px); }
    50% { transform: translateY(-5px) translateX(-8px); }
    75% { transform: translateY(-20px) translateX(5px); }
}

/* ===== Hero Animated Grid ===== */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,197,24,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,197,24,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 15s linear infinite;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* ===== Floating Shapes Animation ===== */
.shape-1 { animation: floatShape1 8s ease-in-out infinite; }
.shape-2 { animation: floatShape2 10s ease-in-out infinite; }
.shape-3 { animation: floatShape3 12s ease-in-out infinite; }

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}
@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 15px) scale(1.08); }
}
@keyframes floatShape3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.06; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
}

/* ===== Hero Image Enhanced Glow ===== */
.hero-image-glow {
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; filter: blur(30px); }
    50% { opacity: 1; filter: blur(50px); }
}

/* ===== Gradient Text ===== */
.hero-name span {
    background: linear-gradient(135deg, #f5c518 0%, #ffd700 40%, #ffed4a 60%, #f5c518 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmerText 4s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-name {
    text-shadow: 0 0 80px rgba(245,197,24,0.15);
}

/* ===== Section Titles Gradient ===== */
.section-title {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, var(--navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark section titles */
.showroom .section-title,
.contact .section-title,
.page-header .page-title {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Card Glassmorphism + Shimmer ===== */
.skill-card,
.highlight-card,
.exp-card,
.cert-card,
.project-card {
    position: relative;
    overflow: hidden;
}

.skill-card::before,
.highlight-card::before,
.exp-card::before,
.cert-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(245,197,24,0.04) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 0;
}

.skill-card:hover::before,
.highlight-card:hover::before,
.exp-card:hover::before,
.cert-card:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.skill-card > *,
.highlight-card > *,
.exp-card > *,
.cert-card > * {
    position: relative;
    z-index: 1;
}

/* ===== Card Hover Glow Border ===== */
.skill-card:hover {
    border-color: transparent;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.12),
        0 0 0 1px rgba(245,197,24,0.3),
        inset 0 0 30px rgba(245,197,24,0.03);
}

.project-card:hover {
    box-shadow:
        0 20px 50px rgba(0,0,0,0.3),
        0 0 0 1px rgba(245,197,24,0.2),
        0 0 60px rgba(245,197,24,0.05);
}

/* ===== Stats Counter Style ===== */
.stat {
    position: relative;
}

.stat-number {
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    opacity: 0.5;
}

/* ===== CTA Section Enhanced ===== */
.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,197,24,0.12), transparent 70%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* ===== Footer Gradient Border ===== */
.footer {
    border-top: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--primary), transparent) 1;
}

/* ===== Enhanced Fade-in Animations ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== Input Focus Glow ===== */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(245,197,24,0.1), 0 0 20px rgba(245,197,24,0.05);
}

/* ===== Button Ripple/Glow Effect ===== */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

/* ===== Skill Icon Animation ===== */
.skill-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.skill-card:hover .skill-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(245,197,24,0.2);
}

/* ===== Project Card Image Overlay ===== */
.project-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-card:hover .project-thumb::after {
    opacity: 1;
}

/* ===== Certificate Icon Bounce ===== */
.cert-card:hover .cert-icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.2); }
    50% { transform: scale(0.9); }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ===== Timeline Marker Pulse ===== */
.timeline-marker {
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,197,24,0.3); }
    50% { box-shadow: 0 0 0 8px rgba(245,197,24,0); }
}

/* ===== Nav Link Underline Animation ===== */
.nav-link:not(.nav-link--cta) {
    position: relative;
}

.nav-link:not(.nav-link--cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-link:not(.nav-link--cta):hover::after,
.nav-link:not(.nav-link--cta).active::after {
    width: 60%;
    left: 20%;
}

/* ===== Page Header Enhanced ===== */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 15% 25%, rgba(245,197,24,0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 75%, rgba(255,255,255,0.15) 0%, transparent 100%),
        radial-gradient(2px 2px at 85% 45%, rgba(245,197,24,0.15) 0%, transparent 100%);
    animation: particleDrift 20s ease-in-out infinite;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(245,197,24,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,197,24,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* ===== Wave Divider ===== */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: -1px;
    right: -1px;
    color: var(--white);
    line-height: 0;
    z-index: 2;
    overflow: hidden;
}

.wave-divider svg {
    width: calc(100% + 2px);
    height: 60px;
    display: block;
}

.page-header--dark .wave-divider {
    color: var(--navy);
}
.page-header--contact .wave-divider {
    color: var(--white);
}

/* ===== Contact Card Hover Glow ===== */
.contact-card:hover .contact-card-icon {
    background: var(--primary);
    color: var(--navy);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* ===== Footer Link Hover ===== */
.footer-links a {
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* ===== Highlight Number Decorations ===== */
.highlight-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-6px) scale(1.02);
}

/* ===== Showroom Section Glass Effect ===== */
.showroom .section-header,
.showroom-preview .section-header {
    position: relative;
    z-index: 1;
}

/* ===== Smooth Loading ===== */
body {
    animation: pageLoad 0.6s ease;
}

@keyframes pageLoad {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== Floating Elements ===== */
.floating-element {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.2;
    animation: floatParticle 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

.floating-element.sm {
    width: 4px;
    height: 4px;
    opacity: 0.15;
}

@keyframes floatParticle {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.2; }
    25% { transform: translateY(-30px) translateX(15px); opacity: 0.4; }
    50% { transform: translateY(-15px) translateX(-10px); opacity: 0.15; }
    75% { transform: translateY(-40px) translateX(8px); opacity: 0.35; }
}

/* ===== Hero Greeting Line Accent ===== */
.hero-greeting {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-greeting::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
}

/* ===== Skill Tag Hover ===== */
.skill-tags span {
    transition: all 0.3s ease;
    cursor: default;
}

.skill-tags span:hover {
    background: var(--primary) !important;
    color: var(--navy) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245,197,24,0.25);
}

/* ===== Project Status Glow ===== */
.project-status.completed { box-shadow: 0 0 12px rgba(34,197,94,0.2); }
.project-status.in-progress { box-shadow: 0 0 12px rgba(245,197,24,0.2); }
.project-status.planned { box-shadow: 0 0 12px rgba(59,130,246,0.2); }

/* ===== Section CTA ===== */
.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===== Outline Dark Button ===== */
.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--gray-200);
}

.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245,197,24,0.15);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--navy);
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245,197,24,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(245,197,24,0.5);
}

/* ===== Footer Social Icons ===== */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 32px 0 24px;
}
.social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1.5px solid rgba(255,255,255,0.25);
    text-decoration: none;
}
.social-link:hover {
    background: var(--primary);
    color: var(--navy);
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(245,197,24,0.3);
    border-color: var(--primary);
}

/* ===== Page Loading Animation ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(245,197,24,0.15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Typing Cursor ===== */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--primary);
    margin-left: 4px;
    animation: blink 0.7s step-end infinite;
    vertical-align: text-bottom;
}
@keyframes blink {
    50% { opacity: 0; }
}

/* ===== Showroom Empty State ===== */
.showroom-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-400);
}
.showroom-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary);
    opacity: 0.5;
}
.showroom-empty p {
    font-size: 16px;
    max-width: 400px;
    margin: 0 auto;
}

/* ===== About Photo Hover ===== */
.about-photo-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.about-photo-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 3px solid rgba(245,197,24,0.2);
    transition: border-color 0.3s ease;
    pointer-events: none;
}
.about-photo-wrapper:hover::after {
    border-color: var(--primary);
}
.about-photo-wrapper:hover .about-photo {
    transform: scale(1.03);
}
.about-photo {
    transition: transform 0.5s ease;
}

/* ===== CV Download Button ===== */
.cv-download-wrapper {
    text-align: center;
    margin-top: 40px;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: var(--primary);
    color: var(--navy);
    font-weight: 600;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245,197,24,0.25);
}
.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245,197,24,0.4);
}

/* ===== Contact Success Animation ===== */
.form-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.form-success-overlay.active {
    opacity: 1;
    visibility: visible;
}
.form-success-content {
    text-align: center;
    color: #fff;
    animation: successPop 0.5s ease;
}
.form-success-content i {
    font-size: 64px;
    color: #22c55e;
    margin-bottom: 20px;
}
.form-success-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}
.form-success-content p {
    color: var(--gray-400);
}
@keyframes successPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* ===== Contact Social Links ===== */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.contact-social .social-link {
    background: rgba(245,197,24,0.08);
    border-color: rgba(245,197,24,0.15);
    color: var(--gray-600);
}
.contact-social .social-link:hover {
    background: var(--primary);
    color: var(--navy);
}

/* ===== Skills Level Bars ===== */
.skill-level-section {
    margin-top: 8px;
}
.skill-level-bar {
    height: 4px;
    background: rgba(245,197,24,0.12);
    border-radius: 4px;
    margin-top: 10px;
    overflow: hidden;
}
.skill-level-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}
.skill-card.visible .skill-level-fill {
    width: var(--level);
}

/* ===== Showroom Preview Button Fix ===== */
.showroom-preview .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.showroom-preview .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Filter Buttons Improved ===== */
.filter-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    border-color: var(--primary);
    color: #fff;
    background: rgba(245,197,24,0.1);
}
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--navy);
    font-weight: 600;
}
.showroom-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* ===== Project Card Hover Overlay ===== */
.project-thumb {
    position: relative;
    overflow: hidden;
}
.project-card:hover .project-thumb img,
.project-card:hover .project-thumb-placeholder {
    transform: scale(1.05);
}
.project-thumb img,
.project-thumb-placeholder {
    transition: transform 0.4s ease;
}
