/* Premium Midnight Teal Palette */
:root {
    /* Layout */
    --header-h: 80px;
    --header-height: var(--header-h);

    /* Primary Canvas */
    --bg-main: #F8FAFC;
    --bg-section: #FFFFFF;
    --bg-card: #FFFFFF;

    /* Primary Text */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #64748B;

    /* Brand Accents (Teal & Cyan) */
    --accent-primary: #0D9488;
    --accent-secondary: #0891B2;
    --accent-success: #10B981;

    /* UI Structure */
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;

    /* Header (Deep Navy) */
    --header-bg: #111827;
    --header-text: #F9FAFB;

    /* Code Content */
    --code-bg: #0F172A;
    --code-text: #E2E8F0;

    /* Legacy Compatibility */
    --primary: var(--accent-primary);
    --primary-dark: #0D6E6E;
    --primary-light: #5EEAD4;
    --primary-gradient: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Shadows (Premium Depth) */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
}

@media (max-width: 768px) {
    :root {
        --header-h: 70px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-h);
    /* Fix header overlap */
}

/* Clear anchor scroll spacing */
section[id],
article[id],
div[id] {
    scroll-margin-top: calc(var(--header-h) + 2rem);
}

/* Global Centering & Typography */
h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.site-header {
    background: #0F172A;
    /* Solid Deep Navy */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
    background: #111827;
    height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    width: 100%;
}

.site-header .logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.site-header .profile-photo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.site-header .profile-photo:hover {
    transform: scale(1.15);
}

.site-header .logo {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--header-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-header.scrolled .logo {
    color: var(--header-text);
}

.site-header .logo:hover {
    color: var(--accent-primary);
}

.site-header .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.site-header .nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
}

.site-header.scrolled .nav-links a {
    color: rgba(255, 255, 255, 0.7);
}

.site-header .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.2s ease;
}

.site-header .nav-links a:hover {
    color: #FFFFFF;
}

.site-header .nav-links a.active {
    color: var(--accent-primary);
    font-weight: 600;
}

.site-header.scrolled .nav-links a:hover {
    color: #FFFFFF;
}

.site-header.scrolled .nav-links a.active {
    color: var(--accent-primary);
}

.site-header .nav-links a:hover::after,
.site-header .nav-links a.active::after {
    width: 100%;
}

section {
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-size: 1.25rem;
    color: var(--header-text);
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s ease;
}

.site-header.scrolled .mobile-menu-toggle {
    color: var(--header-text);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle:hover {
    background: var(--bg-section);
    border-color: var(--border-medium);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .site-header .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFFFFF;
        /* High contrast for mobile menu */
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 0 !important;
        border-bottom: 3px solid var(--accent-primary);
        z-index: 2001;
    }

    .site-header .nav-links.active {
        display: flex;
    }

    .site-header .nav-links a {
        padding: 1.25rem 2rem;
        border-bottom: 1px solid var(--border-light);
        width: 100%;
        color: var(--text-primary) !important;
        font-weight: 600;
        text-align: left;
    }

    .mobile-menu-toggle.active {
        color: #000000 !important;
        background: #FFFFFF;
        border-color: #000000;
    }

    .site-header .nav-links a:last-child {
        border-bottom: none;
    }

    .site-header .nav-links a::after {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.hero-section::before {
    display: none;
    /* Remove background wave noise */
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-profile-image {
    width: 280px;
    height: 280px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.hero-profile-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .hero-profile-image {
        width: 180px;
        height: 180px;
        border-width: 4px;
    }
}

.hero-content h1 {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary) !important;
    border: 1.5px solid var(--accent-primary);
}

.btn-outline:hover {
    background: rgba(13, 148, 136, 0.05);
    color: var(--primary-dark) !important;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white !important;
    border: none;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary) !important;
}

.btn-outline-primary:hover {
    background: rgba(13, 148, 136, 0.05);
}

/* Stats Section */
.stats-section {
    background: var(--bg-main);
    padding: 5rem 2rem;
    color: var(--text-primary);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Section Styles */
.section {
    padding: 6rem 2rem;
    position: relative;
}

/* Background Alternation for Visual Separation */
.section:nth-of-type(even),
.section-alt {
    background-color: var(--bg-main);
}

.section:nth-of-type(odd) {
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

/* Cards */
.card {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.card h3 {
    color: var(--text-primary);
    margin-top: 0;
    font-weight: 700;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.contact-icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .contact-icon-box {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* Project Cards */
.project-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--accent-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent-primary);
}

/* Blog Cards */
.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 2rem;
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.blog-card-content {
    padding: 2rem;
}

.blog-meta {
    color: var(--accent-primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card h2 {
    margin: 0.5rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.blog-card h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: var(--accent-primary);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.skill-category h3 {
    margin-top: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--accent-primary);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

/* Removed animation for clarity */

/* Feature Boxes */
.feature-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--bg-main);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    border: 1px solid var(--border-light);
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-medium);
}

.feature-content h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 700;
}

/* CTA Section */
.cta-section {
    background: #1e3a8a;
    /* Solid Navy */
    background: var(--primary-gradient);
    /* Premium Teal Gradient */
    padding: 7rem 2rem;
    text-align: center;
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-section h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Badge/Tag Styles */
.badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.badge-primary {
    background: var(--primary);
    color: white;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Timeline */
.timeline-item {
    position: relative;
    padding-left: 3rem;
    padding-bottom: 4rem;
    border-left: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    border-left-color: var(--accent-primary);
}

.timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-main);
    border: 2px solid var(--accent-primary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.timeline-item:hover::before {
    transform: scale(1.3);
    background: var(--accent-primary);
    box-shadow: 0 0 15px rgba(13, 148, 136, 0.4);
}

/* Footer */
.site-footer {
    background: #0F172A;
    color: var(--header-text);
    padding: 5rem 2rem 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-widget h4 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: var(--header-text);
    font-weight: 700;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 0.5rem;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-widget ul li a:hover {
    color: var(--accent-primary);
}

/* Global Animations & Effects */
:root {
    --transition-base: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-base);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-subtle {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design Refinements */

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .hero-section {
        min-height: auto;
        padding: 6rem 1rem 4rem;
    }

    .btn {
        padding: 1rem 1.5rem;
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem !important;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .feature-box {
        padding: 1.25rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-lg {
    margin-top: 4rem;
}

.mb-lg {
    margin-bottom: 4rem;
}

.flex {
    display: flex;
}

.gap-sm {
    gap: 1rem;
}

/* Premium Contact Form Styles */
.contact-form-container {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    /* fallback for var(--border-light) */
    border-radius: 22px;
    padding: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    /* fallback for var(--shadow-lg) */
    max-width: 500px;
    margin: 0 auto;
    color: #0F172A;
    /* fallback for var(--text-primary) */
}

.contact-form-container {
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
    }
}

.form-group {
    position: relative;
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    /* Use primary teal for better contrast on white */
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition-base);
    font-family: inherit;
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

textarea.form-control {
    resize: vertical;
    /* Fixed width, vertical resize only */
    min-height: 120px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: var(--bg-main);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.submit-btn {
    width: 100%;
    background: var(--primary-gradient);
    color: white !important;
    border: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 148, 136, 0.3);
    opacity: 0.9;
}

.submit-btn:active {
    transform: translateY(0);
}

.contact-info-pill {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    transition: var(--transition-base);
}

.contact-info-pill:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}