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

:root {
    --bg-primary: #050d22;
    --bg-secondary: #161a23;
    --text-primary: #e6e6eb;
    --text-secondary: #a0a4b8;
    --accent: #6ea8fe;
    --border-subtle: #252a3a;
    
      /* Section backgrounds (Figma-style alternation) */
    --section-bg-dark: radial-gradient(
        80% 60% at 50% 0%,
        rgba(110, 168, 254, 0.10),
        rgba(5, 13, 34, 0)
        ),
    linear-gradient(
        180deg,
        rgba(5, 13, 34, 0.98),
        rgba(5, 13, 34, 0.88)
        );
    --section-bg-light: 
    linear-gradient(
        180deg,
        rgba(22, 26, 35, 0.95),
        rgba(22, 26, 35, 0.85)
        );

    /* Card surfaces that sit on those section backgrounds */
    --surface-on-dark: rgba(22, 26, 35, 0.70); /* lighter card */
    --surface-on-light: rgba(10, 16, 34, 0.88); /* darker card */

}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

p {
    color: var(--text-secondary);
    max-width: 65ch;
    margin-bottom: 1rem;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

section {
    margin-bottom: 0;
    padding: 0;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

ul {
    margin-left: 1.2rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

.section-title {
    position: relative;
    padding-bottom: 0.75rem;
    text-align: center;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 999px;
}


.section-intro {
    max-width: 60ch;
    margin-top: 0.75rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.project-grid,
.experience-grid,
.education-grid {
    display: grid;
    gap: 2rem;
}

/* Navigation Bar */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(5, 13, 34, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

nav {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.navigation-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.navigation-bar h1 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 650;
    letter-spacing: 0.2px;
}

.navigation-links {
    list-style: none;
    display: flex;
    gap: 1.6rem;
    margin: 0;
    padding: 0;
}

.navigation-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 520;
    opacity: 0.85;
}

.navigation-links a:hover {
    color: var(--accent);
    opacity: 1;
    text-decoration: none;
}

.navigation-links a.is-active { color: var(--accent); opacity: 1; }

@media (max-width: 860px) {
    .navigation-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navigation-links {
        flex-wrap: wrap;
        row-gap: 0.75rem;
        column-gap: 1.25rem;
    }
}

.navigation-home {
    color: var(--text-primary);
    text-decoration: none;
}
  
.navigation-home:hover {
    color: var(--text-primary);
    text-decoration: none;
}
  
.navigation-home:focus-visible {
    outline: 2px solid rgba(110, 168, 254, 0.6);
    outline-offset: 4px;
    border-radius: 8px;
}

/* Hero Section */

#hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    min-height: calc(100vh - 72px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 6.5rem 1.5rem 5rem;

    background:
        radial-gradient(60% 55% at 50% 40%,
            rgba(110, 168, 254, 0.22),
            rgba(5, 13, 34, 0) 70%),
        linear-gradient(180deg,
            rgba(5, 13, 34, 1),
            rgba(5, 13, 34, 0.92));
}

#hero .hero-image {
    width: 120px;
    height: 120px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 1px;
    color: #ffffff;

    background: linear-gradient(135deg, var(--accent), #a78bfa);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);

    margin-bottom: 1.5rem;
}

.hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    display: block;
}
  

#hero .hero-name {
    margin: 0.25rem 0 0.75rem;
    font-size: clamp(2.8rem, 5vw, 4.1rem);
    font-weight: 720;
    line-height: 1.08;

    background: linear-gradient(90deg, var(--accent), #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#hero .hero-tagline {
    margin: 0 0 0.75rem;
    font-size: 1.2rem;
    color: rgba(230, 230, 235, 0.9);
    max-width: 70ch;
}

#hero .hero-summary {
    margin: 0 auto 1.8rem;
    color: var(--text-secondary);
    max-width: 72ch;
    line-height: 1.7;
}

#hero .hero-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

#hero .hero-project-button,
#hero .hero-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.35rem;
    border-radius: 12px;
    font-weight: 650;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

#hero .hero-project-button {
    background: rgba(110, 168, 254, 0.9);
    color: #08122b;
    border-color: rgba(110, 168, 254, 0.6);
}

#hero .hero-project-button:hover {
    transform: translateY(-1px);
    background: rgba(110, 168, 254, 1);
}

#hero .hero-contact-button {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.14);
}

#hero .hero-contact-button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

#hero .scroll-down-indicator {
    margin-top: 2.8rem;
    font-size: 1.6rem;
    opacity: 0.55;
    text-decoration: none;
    color: var(--text-secondary);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#hero .scroll-down-indicator:hover {
    opacity: 0.9;
    transform: translateY(2px);
}

/* About Section */

#about {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    padding: 6rem 0;
    border: none;
    border-radius: 0;

    background: var(--section-bg-dark);
}

#about > .section-title,
#about > .section-intro,
#about .about-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#about > .section-intro {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 70ch;
    margin-bottom: 3.25rem;
}

#about .about-grid {
    max-width: 1250px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.25rem;
}

#about .about-card {
    background: var(--surface-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;

    padding: 2.1rem 1.75rem;
    min-height: 240px;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

#about .about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(110, 168, 254, 0.25);
}

#about .about-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: rgba(110, 168, 254, 0.12);
    border: 1px solid rgba(110, 168, 254, 0.25);

    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 1.6rem;

    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
}

#about .about-card h3 {
    margin: 0.25rem 0 0.9rem;
    font-size: 1.15rem;
    color: var(--text-primary);
}

#about .about-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 28ch;
}

@media (max-width: 1050px) {
    #about .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    #about .about-grid {
        grid-template-columns: 1fr;
    }
}

#about .section-title {
    font-size: 3rem;
    margin-bottom: 2.25rem;
}

/* Skills Section */

#skills .skills-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem;
    align-items: stretch;
}

@media (max-width: 900px) {
    #skills .skills-grid {
        grid-template-columns: 1fr;
    }
}

#skills .skill-item-card {
    background: var(--surface-on-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem 1.75rem 1.5rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#skills .skill-item-card h3 {
    font-size: 1.15rem;
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#skills .skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

#skills .skill-chip {
    background-color: rgba(110, 168, 254, 0.08);
    border: 1px solid rgba(110, 168, 254, 0.35);
    color: var(--accent);

    padding: 0.35rem 0.75rem;
    border-radius: 999px;

    font-size: 0.82rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

#skills {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    padding: 6rem 0;
    border: none;
    border-radius: 0;

    background: var(--section-bg-light);
}

#skills > .section-title,
#skills > .section-intro,
#skills .skills-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#skills .section-title {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

#skills>.section-intro {
    text-align: center;
    margin: 0.75rem auto 3.25rem;
}


#skills .skill-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Projects Section */

#projects .project-item-card strong {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

#projects {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    border: none;
    border-radius: 0;
    padding: 6rem 0;
    background: var(--section-bg-dark);
}

#projects > .section-title,
#projects > .section-intro,
#projects .project-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#projects .section-title {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

#projects > .section-intro {
    text-align: center;
    margin: 0.75rem auto 3.75rem;
}

#projects .project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem;
}

@media (max-width: 900px) {
    #projects .project-grid {
        grid-template-columns: 1fr;
    }
}

#projects .project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
}

#projects .project-tech span {
    background-color: rgba(110, 168, 254, 0.08);
    border: 1px solid rgba(110, 168, 254, 0.35);
    color: var(--accent);
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    display: inline-block;
}

#projects .project-item-card {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    padding: 2.1rem;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    background: var(--surface-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

#projects .project-item-card p {
    line-height: 1.65;
    margin-bottom: 0.75rem;
}

#projects .project-item-card h3 {
    margin-bottom: 0.25rem;
    font-size: 1.35rem;
}

#projects .project-item-card em {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.9;
}

#projects .project-item-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

#projects .project-btn {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    width: fit-content;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.1;
    align-items: center;
    gap: 0.5rem;
}

#projects .project-btn:hover {
    background: rgba(110, 168, 254, 0.12);
}

#projects .project-btn::after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
  
    /* SVG GitHub mark (white) */
    background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 .5C5.73.5.5 5.74.5 12.2c0 5.18 3.44 9.57 8.2 11.12.6.12.82-.26.82-.58v-2.23c-3.34.74-4.04-1.65-4.04-1.65-.55-1.42-1.34-1.8-1.34-1.8-1.1-.77.08-.76.08-.76 1.22.09 1.86 1.27 1.86 1.27 1.08 1.9 2.83 1.35 3.52 1.03.11-.8.42-1.35.76-1.66-2.66-.31-5.46-1.37-5.46-6.08 0-1.34.46-2.44 1.24-3.3-.12-.31-.54-1.57.12-3.27 0 0 1.01-.33 3.3 1.26a11.1 11.1 0 0 1 3-.42c1.02 0 2.05.14 3 .42 2.29-1.59 3.3-1.26 3.3-1.26.66 1.7.24 2.96.12 3.27.77.86 1.24 1.96 1.24 3.3 0 4.72-2.8 5.76-5.47 6.07.43.38.82 1.12.82 2.27v3.36c0 .32.22.7.82.58 4.76-1.55 8.2-5.94 8.2-11.12C23.5 5.74 18.27.5 12 .5z'/%3E%3C/svg%3E");
}

/* Experience Section */
#experience {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  
    padding: 6rem 0;
    border: none;
    border-radius: 0;
  
    background: var(--section-bg-light);
}

#experience > .section-title,
#experience > .section-intro,
#experience .experience-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#experience .section-title {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

#experience > .section-intro {
    text-align: center;
    max-width: 60ch;
    margin: 0.75rem auto 3.75rem;
}

#experience .experience-grid {
    gap: 2.25rem;
}

#experience .experience-item-card {
    background: var(--surface-on-light);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.1rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

#experience .experience-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: start;
    margin-bottom: 1.25rem;
}

#experience .experience-logo {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
  
    background: rgba(110, 168, 254, 0.12);
    border: 1px solid rgba(110, 168, 254, 0.25);
    color: var(--accent);
    font-size: 1.1rem;
}

#experience .experience-role h3 {
    margin: 0;
    font-size: 1.35rem;
}

#experience .experience-company {
    margin: 0.25rem 0 0;
    color: var(--text-secondary);
}
  
#experience .experience-dates p {
    margin: 0.25rem 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: right;
}

#experience .experience-bullets {
    margin: 0 0 1.25rem 1.2rem;
}
  
#experience .experience-bullets li {
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

#experience .experience-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
  
#experience .experience-skills span {
    background-color: rgba(110, 168, 254, 0.08);
    border: 1px solid rgba(110, 168, 254, 0.35);
    color: var(--accent);
  
    padding: 0.32rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 700px) {
    #experience .experience-top {
        grid-template-columns: auto 1fr;
    }
  
    #experience .experience-dates {
        grid-column: 2 / 3;
    }
  
    #experience .experience-dates p {
        text-align: left;
    }
}

/* Education Section */

#education {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    padding: 6rem 0;
    border: none;
    border-radius: 0;

    background: var(--section-bg-dark);
}

#education > .section-title,
#education .education-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

#education .section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
}

#education .education-grid {
    max-width: 1280px;
    display: grid;
    width: 100%;
    gap: 2rem;
}

#education .education-item-card {
    background: var(--surface-on-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;

    padding: 2.35rem 2.35rem;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);

    display: flex;
    gap: 1.6rem;
    align-items: flex-start;
}

#education .education-logo {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: rgba(110, 168, 254, 0.12);
    border: 1px solid rgba(110, 168, 254, 0.25);

    font-size: 1.6rem;
    line-height: 1;

    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;

    flex: 0 0 auto;
    margin-top: 0.15rem;
}

#education .education-degree {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.2;
    color: var(--text-primary);
}

#education .education-school {
    margin: 0.55rem 0 0;
    color: var(--text-secondary);
    font-size: 1.02rem;
    max-width: none;
}

#education .education-date {
    margin: 0.35rem 0 0;
    color: rgba(160, 164, 184, 0.85);
    font-size: 0.95rem;
    max-width: none;
}

#education .education-details {
    list-style: none;
    margin: 1.35rem 0 0;
    padding: 0;
}

#education .education-details li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: none;
}

#education .education-details li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.9rem;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.9;
}

@media (max-width: 700px) {
    #education .education-item-card {
        flex-direction: column;
        gap: 1rem;
        padding: 1.75rem;
    }
}

/* Contact Section */

#contact {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    padding: 6rem 0;
    border: none;
    border-radius: 0;

    background: var(--section-bg-light);
}

#contact > .section-title,
#contact > .section-intro,
#contact .contact-layout {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

#contact .section-title {
    font-size: 3rem;
    margin-bottom: 0.75rem;
}

#contact > .section-intro {
    text-align: center;
    margin: 0.75rem auto 3.75rem;
    max-width: 70ch;
}

#contact .contact-layout {
    max-width: 1250px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.25rem;
    align-items: start;
}

#contact .contact-card {
    background: var(--surface-on-light);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 2.25rem 2.15rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.26);
    text-align: left;
}

#contact .contact-card-title {
    font-size: 1.55rem;
    margin: 0 0 1.5rem;
    text-align: left;
}

#contact .contact-form {
    display: grid;
    gap: 1.15rem;
}

#contact .contact-label {
    font-size: 0.95rem;
    color: var(--text-primary);
    opacity: 0.9;
    margin: 0 0 0.35rem;
    display: block;
}

#contact .contact-input,
#contact .contact-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.85rem 0.95rem;
    outline: none;
}

#contact .contact-textarea {
    resize: none;
    min-height: 110px;
}

#contact .contact-input::placeholder,
#contact .contact-textarea::placeholder {
    color: rgba(160, 164, 184, 0.7);
}

#contact .contact-input:focus,
#contact .contact-textarea:focus {
    border-color: rgba(110, 168, 254, 0.45);
    box-shadow: 0 0 0 3px rgba(110, 168, 254, 0.12);
}

#contact .contact-submit {
    margin-top: 0.75rem;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 0.95rem 1rem;

    background: rgba(110, 168, 254, 0.92);
    color: #08122b;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

#contact .contact-submit:hover {
    background: rgba(110, 168, 254, 1);
    transform: translateY(-1px);
}

#contact .contact-info {
    padding-top: 0.6rem;
}

#contact .contact-info-title {
    font-size: 1.6rem;
    margin: 0 0 1.5rem;
}

#contact .contact-info-list {
    display: grid;
    gap: 1.25rem;
}

#contact .contact-info-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 1rem;
    align-items: center;
}

#contact .contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;

    background: rgba(110, 168, 254, 0.12);
    border: 1px solid rgba(110, 168, 254, 0.25);

    color: var(--accent);
    font-weight: 800;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

#contact .contact-info-icon .github-icon {
    width: 22px;
    height: 22px;
    display: block;
    fill: currentColor;
    filter: brightness(0) invert(1);
}

#contact .contact-info-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.9;
    margin-bottom: 0.15rem;
}

#contact .contact-info-value {
    color: var(--text-primary);
    text-decoration: none;
    word-break: break-word;
}

#contact .contact-info-value:hover {
    color: var(--accent);
    text-decoration: none;
}

@media (max-width: 950px) {
    #contact .contact-layout {
        grid-template-columns: 1fr;
    }

    #contact .contact-info {
        padding-top: 0;
    }
}

#contact form {
  width: 100%;
}

#contact form input,
#contact form textarea,
#contact form button {
  width: 100%;
  max-width: none;
}

/* Footer Section */

.site-footer {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    padding: 2.25rem 0;
    border-top: none;
    background: rgba(5, 13, 34, 0.98);
}

.site-footer .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;

    display: flex;
    justify-content: center;
    text-align: center;
}

.site-footer p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}