﻿:root {
    /* Reference Color Palette */
    --bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --accent: #00f2fe;
    /* Cyan Accent */
    --accent-2: #4facfe;
    /* Blue Accent */
    --accent-hover: #00c3ce;
    --text-main: #e2e8f0;
    --text-dim: #94a3b8;
    --font-mono: 'JetBrains Mono', monospace;
    --font-sans: 'Inter', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: #05050b;
    background-image:
        radial-gradient(circle at 18% 10%, rgba(66, 45, 128, 0.22), transparent 38%),
        radial-gradient(circle at 82% 22%, rgba(48, 34, 102, 0.18), transparent 42%),
        radial-gradient(circle at 50% 68%, rgba(34, 24, 78, 0.2), transparent 48%),
        linear-gradient(180deg, #070711 0%, #05050b 45%, #04040a 100%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 100px 0;
}

/* Section Background Support */
.hero,
#contact {
    position: relative;
    overflow: hidden;
}


/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--glass-border);
}

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

.logo {
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

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

.hero-right {
    display: flex;
    justify-content: center;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    position: relative;
    padding-left: 28px;
}

.status-badge::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.role-text {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero p {
    max-width: 600px;
    margin-bottom: 40px;
    color: var(--text-dim);
    font-size: 1.1rem;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #050505;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero Card */
.hero-card {
    background: var(--card-bg);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-label {
    font-family: var(--font-mono);
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
}

.focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.focus-tag {
    padding: 6px 14px;
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 20px;
    color: var(--accent);
    font-size: 0.85rem;
    font-family: var(--font-mono);
}

.stats-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 0.95rem;
}
.stat-value {
    color: var(--accent);
    font-size: 1.15rem;
    font-weight: 700;
    min-width: 64px;
    font-family: var(--font-mono);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    color: var(--accent);
}

/* --- ABOUT --- */
.about-card {
    background: var(--card-bg);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 60px;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.bio-text {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-edu {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.edu-title {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.edu-degree {
    color: var(--accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.edu-meta {
    color: var(--text-dim);
    font-size: 0.95rem;
}

/* --- EXPERIENCE --- */
.timeline {
    position: relative;
    padding-left: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

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

.experience-item::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 25px;
    width: 6px;
    /* Smaller more refined dot */
    height: 6px;
    background: var(--bg);
    border: 2px solid var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.exp-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle border */
    padding: 30px;
    border-radius: 12px;
    /* Smoother radius */
    transition: all 0.3s ease;
    /* Box sides fix: defined borders */
}

.exp-card:hover {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 10px;
}

.exp-company {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.exp-role {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
}

.exp-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(8, 8, 16, 0.52);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
    min-width: 228px;
    text-align: center;
}

.exp-card ul li {
    margin-bottom: 10px;
    color: var(--text-dim);
    position: relative;
    padding-left: 20px;
    list-style: none;
    font-size: 0.95rem;
}

.exp-card ul li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* --- SKILLS --- */
.skills-showcase {
    display: flex;
    flex-direction: column;
    gap: 42px;
}
.skill-group {
    text-align: center;
}
.skill-heading {
    color: white;
    font-size: 1.45rem;
    margin-bottom: 22px;
}
.skills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}
.skill-tile {
    background: rgba(12, 12, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    width: 122px;
    height: 82px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.28s ease;
}
.skill-tile:hover {
    border-color: rgba(0, 242, 254, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}
.skill-tile i {
    font-size: 1.45rem;
    color: var(--accent);
}
.skill-tile span {
    font-size: 0.78rem;
    color: var(--text-dim);
    font-weight: 500;
    line-height: 1.1;
    padding: 0 6px;
}

/* --- PROJECTS --- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.project-card {
    background: var(--card-bg);
    border: var(--glass-border);
    padding: 32px;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent);
}


.project-thumb {
    display: block;
    margin: -4px -4px 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 8, 18, 0.6);
}

.project-thumb img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.project-thumb:hover img {
    transform: scale(1.03);
    filter: brightness(1.04);
}

.project-card h3 {
    margin-bottom: 16px;
    color: var(--text-main);
    font-size: 1.4rem;
}

.project-card p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 20px;
}

.project-links a {
    color: var(--text-dim);
    font-size: 1.4rem;
    transition: 0.3s;
}

.project-links a:hover {
    color: var(--accent);
}


/* --- CONTACT --- */
.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(10, 10, 20, 0.55);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    backdrop-filter: blur(16px);
}

.contact-card h2 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.contact-card p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--accent);
}

.linkedin-btn {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.linkedin-btn:hover {
    background: rgba(0, 242, 254, 0.1);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-dim);
    background: #020202;
    margin-top: 100px;
    opacity: 0.8;
}

/* Mobile */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

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

    h1 {
        font-size: 2.8rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .skills-row {
        gap: 10px;
    }
    .skill-tile {
        width: 108px;
        height: 76px;
    }
    .skill-tile span {
        font-size: 0.72rem;
    }

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

    .skill-wheel-panel {
        width: 95vw;
        height: 78vh;
    }

    .skill-wheel-core {
        width: 170px;
        height: 170px;
        font-size: 0.9rem;
    }

    .skill-node {
        font-size: 0.76rem;
        padding: 8px 12px;
    }

    .timeline {
        padding-left: 20px;
    }

    .experience-item::before {
        left: -24px;
    }
}


/* --- Glass Upgrade --- */
:root {
    --glass-bg-1: rgba(255, 255, 255, 0.07);
    --glass-bg-2: rgba(255, 255, 255, 0.02);
    --glass-border-strong: rgba(255, 255, 255, 0.2);
}

nav {
    background: linear-gradient(140deg, rgba(20, 20, 36, 0.72), rgba(10, 10, 20, 0.52));
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-links a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.nav-links a:hover {
    color: var(--accent);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 18px rgba(0, 0, 0, 0.28);
}

.hero-card,
.about-card,
.exp-card,
.skill-tile,
.project-card,
.contact-card,
.exp-date {
    background: linear-gradient(145deg, var(--glass-bg-1), var(--glass-bg-2));
    border: 1px solid var(--glass-border-strong);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), inset 0 -1px 0 rgba(255, 255, 255, 0.04), 0 14px 34px rgba(0, 0, 0, 0.3);
}

.hero-card,
.about-card,
.exp-card,
.project-card,
.contact-card {
    transform-style: preserve-3d;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.hero-card:hover,
.about-card:hover,
.exp-card:hover,
.project-card:hover,
.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 242, 254, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 20px 40px rgba(0, 0, 0, 0.42), 0 0 36px rgba(0, 242, 254, 0.12);
}

/* Focus Area Box specific hover */
.hero-card:hover .card-label {
    color: rgba(0, 242, 254, 0.92);
}

.hero-card:hover .focus-tag {
    border-color: rgba(0, 242, 254, 0.45);
    background: rgba(0, 242, 254, 0.12);
    box-shadow: 0 0 16px rgba(0, 242, 254, 0.14);
}

.focus-tag {
    transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}


/* --- Skills Wheel --- */
.skills-intro {
    text-align: center;
    color: var(--text-dim);
    margin-top: -30px;
    margin-bottom: 34px;
}

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

.skill-orb {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
    border-radius: 10px;
    min-height: 100px;
    padding: 14px 16px;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.skill-orb:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 26px rgba(0, 242, 254, 0.12);
}

.orb-icon {
    font-size: 1.2rem;
    color: var(--accent);
}

.orb-title {
    text-align: center;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.2;
}

.orb-count {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    color: var(--accent);
    font-size: 0.78rem;
    border: 1px solid rgba(0, 242, 254, 0.35);
    background: rgba(0, 242, 254, 0.08);
    position: absolute;
    right: 10px;
    top: 10px;
}

.skill-wheel-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    opacity: 0;
    pointer-events: none;
    display: grid;
    place-items: center;
    background: rgba(4, 4, 12, 0.52);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: opacity 0.26s ease, backdrop-filter 0.26s ease;
}

.skill-wheel-overlay.open {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.skill-wheel-panel {
    width: 100vw;
    height: 100vh;
    border: 0;
    background: transparent;
    position: relative;
    box-shadow: none;
}

.skill-wheel-close {
    display: none;
}

.skill-wheel-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 254, 0.35);
    background: radial-gradient(circle at 30% 20%, rgba(0, 242, 254, 0.16), rgba(12, 12, 24, 0.88));
    display: grid;
    place-items: center;
    text-align: center;
    padding: 22px;
    font-weight: 700;
    font-size: 1.02rem;
    box-shadow: 0 0 26px rgba(0, 242, 254, 0.15);
}

.skill-wheel-ring {
    position: absolute;
    inset: 0;
}

.skill-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translate(var(--x), var(--y));
    min-width: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    text-align: center;
    opacity: 0;
    animation: nodeIn 0.28s ease forwards;
    animation-delay: var(--delay, 0ms);
}

.skill-node-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 254, 0.4);
    background: radial-gradient(circle at 30% 20%, rgba(0, 242, 254, 0.24), rgba(20, 20, 34, 0.9));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
}

.skill-node-label {
    font-size: 0.82rem;
    line-height: 1.2;
    max-width: 118px;
}

@keyframes nodeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) translate(calc(var(--x) * 0.72), calc(var(--y) * 0.72)) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) translate(var(--x), var(--y)) scale(1);
    }
}


/* Phone Optimization */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    nav {
        padding: 12px 0;
    }

    .nav-container {
        gap: 10px;
        align-items: center;
    }

    .logo {
        font-size: 1.05rem;
        flex-shrink: 0;
    }

    .nav-links {
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links a {
        font-size: 0.72rem;
        padding: 6px 10px;
        white-space: nowrap;
    }

    section {
        padding: 76px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 98px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    h1 {
        font-size: clamp(2.3rem, 11vw, 3rem);
        margin-bottom: 18px;
    }

    .role-text {
        font-size: 1.95rem;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 26px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 18px;
    }

    .hero-card {
        max-width: 100%;
        padding: 22px;
    }

    .focus-tags {
        gap: 8px;
        margin-bottom: 22px;
    }

    .focus-tag {
        font-size: 0.76rem;
        padding: 6px 10px;
    }

    .stat-row {
        font-size: 0.9rem;
        gap: 10px;
    }

    .stat-value {
        min-width: 56px;
        font-size: 1.02rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 34px;
    }

    .about-card,
    .contact-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .bio-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .exp-card {
        padding: 20px;
    }

    .exp-company {
        font-size: 1.02rem;
    }

    .exp-role {
        font-size: 1rem;
    }

    .exp-date {
        min-width: auto;
        width: 100%;
        margin-top: 2px;
        font-size: 0.74rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-card {
        padding: 20px;
    }

    .project-thumb img {
        height: 156px;
    }

    .skills-intro {
        margin-top: -18px;
        margin-bottom: 24px;
        font-size: 0.96rem;
    }

    .skills-orb-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .skill-orb {
        min-height: 86px;
        padding: 12px 14px;
    }

    .orb-icon {
        font-size: 1.05rem;
    }

    .orb-title {
        font-size: 0.92rem;
    }

    .skill-wheel-core {
        width: 152px;
        height: 152px;
        font-size: 0.88rem;
    }

    .skill-node {
        min-width: 82px;
    }

    .skill-node-icon {
        width: 34px;
        height: 34px;
        font-size: 0.88rem;
    }

    .skill-node-label {
        font-size: 0.74rem;
        max-width: 90px;
    }

    .contact-info {
        gap: 14px;
    }

    .contact-item {
        font-size: 0.95rem;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    footer {
        padding: 34px 0;
        margin-top: 60px;
        font-size: 0.86rem;
    }
}
