/* ===== CSS Variables ===== */
:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --primary-light: #8b7cf7;
    --secondary: #00b894;
    --accent: #fd79a8;
    --bg: #f8f9fa;
    --bg-card: #ffffff;
    --bg-elevated: #f0f0f5;
    --text: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --gradient-1: linear-gradient(135deg, #6c5ce7, #00b894);
    --gradient-2: linear-gradient(135deg, #6c5ce7, #fd79a8);
    --gradient-3: linear-gradient(135deg, #00b894, #fd79a8);
    --shadow: 0 8px 32px rgba(108, 92, 231, 0.12);
    --radius: 16px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    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;
}

.highlight {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
    margin: 0 auto;
}

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
}

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

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

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-greeting {
    font-size: 1.1rem;
    color: var(--primary-light);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.hero-name {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-wrapper {
    margin-bottom: 24px;
    overflow: hidden;
}

.hero-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--secondary);
    display: inline-block;
    position: relative;
}

.hero-title::after {
    content: '|';
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 4px 20px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-light);
    border: 2px solid var(--primary);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 92, 231, 0.4);
}

.btn-outline i {
    font-size: 1.1rem;
}

.hero-social {
    display: flex;
    gap: 20px;
}

.hero-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    font-size: 1.1rem;
}

.hero-social a:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(108, 92, 231, 0.2);
}

/* Hero Image */
.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-image-frame {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--gradient-1);
    padding: 4px;
    box-shadow: 0 0 60px rgba(108, 92, 231, 0.2);
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-status {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    justify-content: center;
}

.status-separator {
    color: var(--border);
    font-size: 0.8rem;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.success {
    background: rgba(0, 184, 148, 0.1);
    color: #00b894;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00b894;
    display: inline-block;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--bg-card);
}

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

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-icon {
    font-size: 1.8rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

/* ===== Skills Section ===== */
.skills {
    padding: 100px 0;
}

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

.skill-category {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.skill-category:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.1);
}

.skill-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(108, 92, 231, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-light);
}

.skill-category h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.skill-list li {
    color: var(--text-muted);
    padding: 6px 0;
    font-size: 0.9rem;
}

.skill-list li::before {
    content: '▸ ';
    color: var(--primary-light);
}

/* ===== Projects Section (Pinterest Masonry Grid) ===== */
.projects {
    padding: 100px 0;
    background: var(--bg-card);
}

.projects-grid {
    columns: 3 300px;
    column-gap: 18px;
}

.project-card {
    break-inside: avoid;
    margin-bottom: 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.1);
}

.project-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--bg-elevated);
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: none;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-muted);
    background: var(--bg-elevated);
}

.project-info {
    padding: 14px 16px;
}

.project-info h3 {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-bottom: 10px;
    line-height: 1.45;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-tags span {
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary-light);
    font-size: 0.72rem;
    font-weight: 500;
}

/* ===== Experience / Collapsible Timeline ===== */
.experience {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 16px;
}

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

.timeline-dot {
    position: absolute;
    left: 12px;
    top: 16px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gradient-1);
    border: 4px solid var(--bg);
    box-shadow: 0 0 0 2px var(--primary);
    z-index: 2;
}

.timeline-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

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

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
    transition: background var(--transition);
}

.timeline-header:hover {
    background: rgba(108, 92, 231, 0.03);
}

.timeline-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.timeline-header h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-toggle {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: transform var(--transition);
    min-width: 20px;
    text-align: center;
}

.timeline-item.active .timeline-toggle {
    transform: rotate(180deg);
}

.timeline-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.timeline-item.active .timeline-body {
    max-height: 300px;
    padding: 0 24px 20px;
}

.timeline-body .timeline-date {
    font-size: 0.82rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== Why Work With Me Section ===== */
.whyme {
    padding: 100px 0;
}

.whyme-subtitle {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 32px;
}

/* Speed Stats */
.whyme-speed-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.speed-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.speed-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.speed-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.12);
}

.speed-stat-icon {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.speed-stat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

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

/* Testimonials */
.whyme-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.08);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 184, 148, 0.05));
    border-color: var(--primary-light);
    text-align: center;
    padding: 32px;
}

.testimonial-card.featured blockquote {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 14px;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-card blockquote {
    font-size: 0.9rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1;
}

.testimonial-meta {
    margin-top: auto;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}

.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.tag-green { background: rgba(0, 184, 148, 0.1); color: #00b894; }
.tag-blue { background: rgba(108, 92, 231, 0.1); color: var(--primary-light); }
.tag-purple { background: rgba(253, 121, 168, 0.1); color: #fd79a8; }

.client-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
    display: block;
    margin-bottom: 2px;
}

.testimonial-job {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Process Steps */
.whyme-process {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    padding-bottom: 28px;
    margin-bottom: 4px;
}

.process-step:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}

.step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--gradient-1);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 50px;
    bottom: 0;
    width: 2px;
    background: var(--border);
    z-index: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.step-arrow {
    font-size: 1.1rem;
    color: var(--primary-light);
    opacity: 0.5;
    min-width: 20px;
    text-align: right;
}

.step-arrow.done {
    opacity: 1;
    color: var(--secondary);
}

/* Why Me CTA */
.whyme-cta {
    text-align: center;
    margin-top: 48px;
    padding: 36px;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 184, 148, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.whyme-cta p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.whyme-cta .btn {
    font-size: 1rem;
    padding: 16px 36px;
}

/* ===== Upwork Section ===== */
.upwork {
    padding: 100px 0;
    background: var(--bg-card);
}

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

.upwork-screenshots {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Upwork Slider */
.upwork-slider {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    background: var(--bg);
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    min-width: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(108, 92, 231, 0.8);
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
}

.upwork-stats {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 16px;
}

.upwork-stat-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.upwork-stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.1);
}

.upwork-stat-card i {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.upwork-stat-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.upwork-stat-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.upwork-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 8px;
}

.upwork-cta .btn i {
    margin-right: 8px;
}

/* ===== Contact Section ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-card);
}

/* ===== Contact Section (Matching Site Grid Card UI) ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 24px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(108, 92, 231, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(108, 92, 231, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.contact-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-icon.upwork-icon {
    background: rgba(20, 168, 0, 0.1);
    color: #14a800;
}

.contact-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    word-break: break-word;
}

.contact-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    transition: var(--transition);
}

.contact-card:hover .contact-action {
    gap: 12px;
    color: var(--primary);
}

.contact-social-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.contact-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: var(--transition);
}

.contact-social-links a:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.1);
}

/* ===== Footer ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

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

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* ===== Askly & Project Sliders ===== */
.askly-slider, .micamp-slider, .trendsnap-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: var(--bg-elevated);
}

.askly-slider-track, .micamp-slider-track, .trendsnap-slider-track {
    display: flex;
    transition: transform 0.4s ease;
    width: 100%;
}

.askly-slide, .micamp-slide, .trendsnap-slide {
    min-width: 100%;
    display: none;
    height: auto;
}

.askly-slide.active, .micamp-slide.active, .trendsnap-slide.active {
    display: block;
}

.askly-slide img, .micamp-slide img, .trendsnap-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.askly-slider-btn, .micamp-slider-btn, .trendsnap-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    opacity: 0;
}

.project-card:hover .askly-slider-btn,
.project-card:hover .micamp-slider-btn,
.project-card:hover .trendsnap-slider-btn {
    opacity: 1;
}

.askly-slider-btn:hover,
.micamp-slider-btn:hover,
.trendsnap-slider-btn:hover {
    background: rgba(108, 92, 231, 0.8);
}

.askly-slider-btn.prev, .micamp-slider-btn.prev, .trendsnap-slider-btn.prev { left: 10px; }
.askly-slider-btn.next, .micamp-slider-btn.next, .trendsnap-slider-btn.next { right: 10px; }

.askly-slider-dots, .micamp-slider-dots, .trendsnap-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.askly-dot, .micamp-dot, .trendsnap-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.askly-dot.active, .micamp-dot.active, .trendsnap-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes blink {
    50% { opacity: 0; }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-social {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-image-frame {
        width: 240px;
        height: 240px;
    }

    .hero-name {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: center;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        columns: 2 280px;
        column-gap: 20px;
    }

    .upwork-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .upwork-stats {
        grid-template-columns: 1.3fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .whyme-speed-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .whyme-testimonials {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: var(--transition);
        border-left: 1px solid var(--border);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-image-frame {
        width: 200px;
        height: 200px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        columns: 1;
    }

    .about-stats {
        flex-direction: column;
        gap: 24px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions .btn,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .whyme-speed-stats {
        grid-template-columns: 1fr;
    }

    .whyme-testimonials {
        grid-template-columns: 1fr;
    }

    .whyme-process {
        padding: 20px;
    }

    .process-step {
        gap: 14px;
    }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.whatsapp-float.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    color: #fff;
}

/* ===== WhatsApp Modal ===== */
.whatsapp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    padding: 20px;
}

.whatsapp-modal-overlay.active {
    display: block;
}

.whatsapp-modal {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 28px;
    max-width: 380px;
    width: 100%;
    position: fixed;
    bottom: 96px;
    right: 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
    animation: waPopIn 0.25s ease;
    z-index: 10000;
}

@keyframes waPopIn {
    from { opacity: 0; transform: scale(0.85) translateY(16px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.whatsapp-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-elevated);
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-modal-close:hover {
    background: var(--primary);
    color: #fff;
}

.whatsapp-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.whatsapp-modal-header i {
    font-size: 3rem;
    color: #25D366;
    margin-bottom: 12px;
}

.whatsapp-modal-header h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.whatsapp-modal-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.whatsapp-modal-form .form-group {
    margin-bottom: 16px;
}

.whatsapp-modal-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.whatsapp-modal-form .required { color: #e74c3c; }
.whatsapp-modal-form .optional { color: var(--text-muted); font-weight: 400; }

.whatsapp-modal-form input,
.whatsapp-modal-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font-size: 0.92rem;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
    box-sizing: border-box;
}

.whatsapp-modal-form input:focus,
.whatsapp-modal-form textarea:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}

.wa-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    gap: 10px;
    background: #25D366;
    border: none;
}

.wa-submit:hover {
    background: #20bd5a;
}
