/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #050608;
    color: #f9fafb;
    line-height: 1.6;
}

/* COLORS */
:root {
    --bg-main: #050608;
    --bg-card: #111318;
    --bg-soft: #15171c;
    --border-soft: #252731;
    --text-muted: #9ca3af;
    --accent: #16ff7b;
}

/* LAYOUT */
.page {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

/* PROFILE CARD LEFT */
.profile-card {
    width: 320px;
    padding: 30px 22px;
    display: flex;
    justify-content: center;
    background: #050608;
    position: sticky;
    top: 0;
    height: 100vh;
    border-right: 1px solid #15171c;
}

.profile-inner {
    width: 100%;
    max-width: 260px;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 24px 22px 22px;
    border: 1px solid #1f2933;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.profile-brand {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.profile-brand .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.profile-brand .brand-name {
    font-weight: 600;
}

.profile-photo {
    width: 140px;
    height: 140px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--border-soft);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-text h1 {
    font-size: 1.3rem;
    text-align: center;
}

.profile-role {
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-muted);
}

.profile-location {
    font-size: 0.8rem;
    text-align: center;
    color: var(--text-muted);
}

.profile-contact p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.profile-social {
    display: flex;
    gap: 10px;
}

.profile-social a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #e5e7eb;
    transition: all 0.2s ease;
}

.profile-social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-1px);
}

.profile-footer {
    margin-top: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.88rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #020617;
    font-weight: 600;
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: #f9fafb;
    border-color: var(--border-soft);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* CONTENT RIGHT */
.content {
    flex: 1;
    padding: 34px 80px 40px;
    max-width: 980px;
    margin: 0 auto;
}

/* SECTION BASE */
.section {
    padding: 60px 0;
    border-bottom: 1px solid #111318;
}

.section:last-of-type {
    border-bottom: none;
}

.section-label {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #1f2933;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.section-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 640px;
}

.accent {
    color: var(--accent);
}

/* HERO */
.hero {
    padding-top: 10px;
}

.hero-title {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.hero-lead {
    max-width: 600px;
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 26px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.hero-stat {
    background: var(--bg-soft);
    border-radius: 16px;
    padding: 14px 18px;
    border: 1px solid var(--border-soft);
    min-width: 150px;
}

.hero-stat-value {
    font-size: 1.4rem;
    font-weight: 600;
}

.hero-stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* COLUMNS / TIMELINE */
.columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.column {
    flex: 1 1 260px;
}

.column-title {
    font-size: 1rem;
    margin-bottom: 14px;
}

.timeline {
    list-style: none;
    border-left: 1px solid #1f2933;
    padding-left: 18px;
}

.timeline li {
    margin-bottom: 18px;
    position: relative;
}

.timeline li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--accent);
}

.timeline-year {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.timeline h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

/* SERVICES */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.service-card {
    background: var(--bg-soft);
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    padding: 18px 18px 16px;
    font-size: 0.9rem;
}

.service-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.service-meta {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* SKILL BADGES */
.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
}

.skill-badge {
    background: var(--bg-soft);
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
}

.skill-name {
    color: #f9fafb;
}

.skill-value {
    color: var(--accent);
    font-weight: 600;
}

/* PROJECTS */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 22px;
}

.project-card {
    background: var(--bg-soft);
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-content {
    padding: 14px 16px 16px;
    font-size: 0.9rem;
}

.project-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.project-tags {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--accent);
    text-decoration: none;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.pricing-card {
    background: var(--bg-soft);
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    padding: 18px;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.price {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 16px;
}

.pricing-card li {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 6px;
}

/* CONTACT FORM */
.contact-form {
    margin-top: 18px;
    background: var(--bg-soft);
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    padding: 18px 18px 20px;
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.form-group {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.form-group label {
    font-size: 0.82rem;
}

.form-group input,
.form-group textarea {
    background: #050608;
    border-radius: 12px;
    border: 1px solid #1f2933;
    color: #f9fafb;
    font-family: inherit;
    font-size: 0.86rem;
    padding: 8px 10px;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.attachment-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    cursor: pointer;
}

.attachment-label input {
    display: none;
}

.form-status {
    font-size: 0.8rem;
    margin-top: 6px;
}

/* SIDE ICON NAV */
.side-nav {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.side-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-link {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: #050608;
    transition: all 0.2s ease;
}

.side-link.active,
.side-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .content {
        padding-right: 40px;
    }
    .side-nav {
        right: 12px;
    }
}

@media (max-width: 900px) {
    .page {
        flex-direction: column;
    }
    .profile-card {
        position: static;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #15171c;
    }
    .profile-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        max-width: none;
    }
    .profile-photo {
        width: 90px;
        height: 90px;
        border-radius: 18px;
    }
    .profile-footer {
        display: none;
    }
    .content {
        padding: 24px 16px 40px;
    }
    .side-nav {
        position: fixed;
        left: 50%;
        bottom: 16px;
        transform: translateX(-50%);
    }
    .side-nav ul {
        flex-direction: row;
        background: #050608;
        padding: 6px 8px;
        border-radius: 999px;
        border: 1px solid #15171c;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }
    .section {
        padding: 40px 0;
    }
}

body > div > aside > div > div.profile-contact > p > a {
    color: white;
    text-decoration: none;
}
