/* =========================================
   1. VARIABLES & THEMES
   ========================================= */
:root {
    --bg-body: #050b14;
    --text-main: #f1f5f9;
    --text-secondary: #94a3b8;
    --accent-color: #38bdf8;
    /* Cyan Neon */
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --tag-bg: rgba(56, 189, 248, 0.1);
    --term-bg: rgba(10, 10, 15, 0.95);
}

/* =========================================
   2. BASE & RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    transition: 0.3s ease;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* =========================================
   3. GLOBAL LAYOUT
   ========================================= */
.layout-container {
    width: 95%;
    max-width: 1400px;
    height: 90vh;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 1.5rem;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

/* =========================================
   4. SIDEBAR PROFILE
   ========================================= */
.sidebar-profile {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.profile-content-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    scrollbar-width: none;
}

.profile-content-wrapper::-webkit-scrollbar {
    display: none;
}

.profile-img-container {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.25);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.profile-img-container:hover {
    transform: scale(1.05);
}

.profile-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.profile-img-container:hover .img-overlay {
    opacity: 1;
}

.img-overlay i {
    font-size: 1.5rem;
    color: #fff;
}

.profile-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--text-main), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.typewriter {
    font-size: 0.9rem;
    color: var(--accent-color);
    height: 20px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.school {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.school-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.divider {
    width: 80%;
    height: 1px;
    background: radial-gradient(circle, var(--glass-border) 0%, transparent 100%);
    margin: 1.5rem auto;
    border: none;
}

.contact-details {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid transparent;
    transition: 0.3s;
}

.contact-row:hover {
    background: var(--tag-bg);
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.sidebar-footer {
    padding: 1.5rem 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--glass-border);
}

.btn-glow {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--bg-body);
    border-radius: 50px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

/* =========================================
   5. RIGHT PANEL & NAV
   ========================================= */
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    min-height: 0;
}

.top-nav {
    flex-shrink: 0;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-links {
    grid-column: 2;
    display: flex;
    gap: 3rem;
}

.nav-links li {
    cursor: pointer;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    font-size: 1.1rem;
}

.nav-links li:hover,
.nav-links li.active {
    color: var(--accent-color);
}

.nav-links li.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-color);
}

.nav-controls {
    grid-column: 3;
    justify-self: end;
    display: flex;
    gap: 10px;
}

.control-item {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 8px 15px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
}

.control-item:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* =========================================
   6. MODALS
   ========================================= */
.terminal-hidden {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.terminal-hidden.open {
    opacity: 1;
    pointer-events: all;
}

.terminal-window {
    width: 700px;
    height: 450px;
    background: var(--term-bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.terminal-hidden.open .terminal-window {
    transform: scale(1);
}

.terminal-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
}

.term-buttons {
    display: flex;
    gap: 8px;
    margin-right: 15px;
}

.term-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.close-term {
    background: #ff5f56;
}

.min-term {
    background: #ffbd2e;
}

.max-term {
    background: #27c93f;
}

.term-title {
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.7;
    width: 100%;
    text-align: center;
}

.terminal-body {
    flex-grow: 1;
    padding: 20px;
    font-family: 'Fira Code', monospace;
    font-size: 0.95rem;
    color: var(--text-main);
    overflow-y: auto;
}

.input-line {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.prompt {
    color: #27c93f;
    font-weight: bold;
}

#terminal-input {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: 'Fira Code', monospace;
    width: 100%;
    outline: none;
    padding: 0;
}

/* Chatbot Styles */
.term-msg {
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 85%;
    line-height: 1.5;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
}

.term-msg.user {
    background: rgba(56, 189, 248, 0.15);
    color: #fff;
    border: 1px solid var(--accent-color);
    margin-left: auto;
    text-align: right;
    float: right;
    clear: both;
}

.term-msg.bot {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    margin-right: auto;
    clear: both;
}

.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out both;
    margin: 0 2px;
}

.typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.cmd-help {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-left: 10px;
}

.cmd-highlight {
    color: var(--accent-color);
    font-weight: bold;
}

/* Lightbox */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    transform: scale(0.8);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-img-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 4px solid var(--accent-color);
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.5);
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.modal-role {
    color: var(--accent-color);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.modal-links-row {
    display: flex;
    gap: 2rem;
}

.social-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.6);
}

/* =========================================
   7. MAIN CONTENT & ANIMATIONS
   ========================================= */
.main-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    min-height: 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.card-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.1s forwards;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile */
.bio-content {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.5s ease 0.2s forwards;
}

.bio-content:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.15);
}

.status-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    margin-top: 1.5rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.pulse-dot {
    position: relative;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.7;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(3);
    }
}

.timeline {
    border-left: 2px solid var(--glass-border);
    margin-left: 10px;
    padding-left: 30px;
    position: relative;
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: 0.3s;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.timeline-item:nth-child(1) {
    animation-delay: 0.3s;
}

.timeline-item:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border);
    transform: translateX(5px);
}

.timeline-dot {
    position: absolute;
    left: -37px;
    top: 20px;
    width: 14px;
    height: 14px;
    background: var(--bg-body);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.loc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.7;
    display: block;
    margin-top: 5px;
}

/* Projects Grid */
.projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.project-item {
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.tab-content.active .project-item {
    animation: fadeInUp 0.6s ease forwards;
}

.project-item:nth-child(1) {
    animation-delay: 0.1s;
}

.project-item:nth-child(2) {
    animation-delay: 0.2s;
}

.project-item:nth-child(3) {
    animation-delay: 0.3s;
}

.project-item:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 15px 40px -10px rgba(56, 189, 248, 0.25);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid var(--glass-border);
}

.project-info h3 {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 4px;
}

.badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.project-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.tags span {
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-secondary);
    border: 1px solid transparent;
    transition: 0.3s;
}

.project-item:hover .tags span {
    border-color: var(--glass-border);
    color: var(--text-main);
}

.project-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-sm {
    flex: 1;
    justify-content: center;
    padding: 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-solid {
    background: var(--accent-color);
    color: #000;
    font-weight: 700;
}

.btn-solid:hover {
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.skill-category {
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    transition: 0.4s;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.tab-content.active .skill-category {
    animation: fadeInUp 0.5s ease forwards;
}

.skill-category:nth-child(1) {
    animation-delay: 0.1s;
}

.skill-category:nth-child(2) {
    animation-delay: 0.2s;
}

.skill-category:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px -10px rgba(56, 189, 248, 0.3);
}

.cat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.cat-icon {
    font-size: 2rem;
    color: var(--accent-color);
    background: rgba(56, 189, 248, 0.1);
    padding: 15px;
    border-radius: 12px;
}

.cat-info h3 {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.percent {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-family: 'Fira Code', monospace;
}

.progress-bg {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), #a855f7);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease-out;
}

.tab-content.active .progress-bar {
    width: var(--w);
}

.skill-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid transparent;
    transition: 0.3s;
}

.skill-pill:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--accent-color);
    color: var(--text-main);
    transform: scale(1.05);
}

/* Contact (Centered) */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 3rem;
}

.text-center {
    text-align: center;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 600px;
}

#contact-form {
    width: 100%;
    padding: 3rem;
    border-radius: 30px;
    background: rgba(20, 25, 40, 0.6);
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

input,
textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

input:focus,
textarea:focus {
    background: rgba(56, 189, 248, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

#send-btn {
    padding: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-top: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    body {
        overflow: auto;
        display: block;
        height: auto;
    }

    .layout-container {
        display: flex;
        flex-direction: column;
        height: auto;
        width: 90%;
        margin: 2rem auto;
    }

    .sidebar-profile {
        height: auto;
        overflow: visible;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .nav-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        height: auto;
    }

    .nav-controls {
        grid-column: auto;
        width: 100%;
        justify-content: center;
    }

    .right-panel {
        height: auto;
    }

    .main-content {
        overflow: visible;
        height: auto;
        padding: 2rem;
    }

    .terminal-window {
        width: 95%;
        height: 60vh;
    }

    .skills-grid,
    .projects-list {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    #contact-form {
        padding: 1.5rem;
    }
}