/* 1. DESIGN SYSTEM & VARIABLES */
:root {
    --bg-dark: #050706;
    --mint-bright: #00ffa3;
    --mint-deep: #0a2e21;
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.6);
    --font-main: 'Inter', sans-serif;
    --radius-lg: 40px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. GLOBAL RESETS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* System cursor remains visible as requested */
    cursor: auto;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 3. CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--mint-bright);
    border-radius: 10px;
}

/* 4. LOADING SCREEN REMOVED */

/* 5. CURSOR FOLLOWER & INTERACTION */
.cursor-follower {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--mint-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    /* Initial state */
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    /* Start centered */
    transition: width 0.4s var(--ease-out-expo), height 0.4s var(--ease-out-expo), opacity 0.4s var(--ease-out-expo);
}

@media (max-width: 900px) {
    .cursor-follower {
        display: none !important;
    }
}



/* Triggered via JS on hover of clickables */
.cursor-follower.growing {
    width: 60px;
    height: 60px;
    opacity: 0.4;
}

/* Link Pointer Fix */
a,
button,
.btn-pill,
.card,
.logo,
.nav-links a {
    cursor: pointer !important;
}

/* Page Transition Overlay Removed */

/* 7. UNIFIED NAVIGATION */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-weight: 900;
    font-size: 1.6rem;
    text-decoration: none;
    color: var(--text-white);
    letter-spacing: -1px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    margin: 0 25px;
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.6;
    transition: opacity 0.4s var(--ease-out-expo), color 0.4s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--mint-bright);
}

.btn-pill {
    background: var(--text-white);
    color: var(--bg-dark);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), color 0.4s var(--ease-out-expo);
}

.btn-pill:hover {
    background: var(--mint-bright);
    transform: scale(1.05);
}

/* 8. HERO SECTION (NON-SCROLLABLE) */
.main-wrapper {
    padding: 12px;
    height: 100vh;
    position: relative;
}

.doodles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(var(--mint-bright) 0.5px, transparent 0.5px),
        radial-gradient(var(--mint-bright) 0.5px, transparent 0.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    height: 100%;
    background: radial-gradient(circle at top right, var(--mint-deep), #050706 70%);
    border-radius: var(--radius-lg);
    position: relative;
    padding: 160px 8% 60px 8%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 163, 0.05);
    /* Subtle border for glass look */
}

.hero-main {
    max-width: 60%;
    /* Prevents overlap with portal */
    position: relative;
    z-index: 2;
}

.hero-main h1 {
    font-size: clamp(3.5rem, 12vw, 10rem);
    line-height: 0.85;
    font-weight: 900;
    letter-spacing: -5px;
    margin-top: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* Circular Portal (Video Style) */
.portal-frame {
    position: absolute;
    right: 2%;
    top: 45%;
    transform: translateY(-50%);
    width: clamp(220px, 25vw, 350px);
    /* Made smaller */
    height: clamp(220px, 25vw, 350px);
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 163, 0.4);
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 80px rgba(0, 255, 163, 0.15);
    /* Removed animation */
}

.portal-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%) contrast(1.1);
}

/* Bottom Stats Row */
.hero-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    z-index: 10;
}

.stat-item {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item span {
    color: var(--mint-bright);
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

/* 9. CONTENT PAGES LAYOUT */
.content-page-container {
    min-height: 100vh;
    padding: 180px 8% 100px 8%;
}

.section-label {
    color: var(--mint-bright);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    display: block;
    margin-bottom: 25px;
}

.large-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    max-width: 1000px;
    letter-spacing: -2px;
}

/* Grid & Components */
/* Grid & Components */
/* Grid & Components */
.grid {
    display: grid;
    /* Reduced min-width to fit 3-4 cards on standard desktops */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.card {
    background: #0c110f;
    padding: 30px;
    /* Reduced padding */
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--mint-bright);
}

.card p {
    color: var(--text-dim);
    line-height: 1.5;
    font-size: 0.95rem;
}

.card-banner {
    height: 140px;
    border-radius: 16px;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center;
}

/* 23. TIMELINE TREE (About Page) */
.timeline-section {
    margin-top: 100px;
    position: relative;
    padding-left: 20px;
}

.timeline-tree {
    position: relative;
    border-left: 2px solid rgba(0, 255, 163, 0.2);
    padding-left: 40px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -49px;
    /* Align with border line */
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--bg-dark);
    border: 2px solid var(--mint-bright);
    border-radius: 50%;
    z-index: 1;
    transition: background 0.3s;
}

.timeline-item:hover::before {
    background: var(--mint-bright);
}

.timeline-year {
    display: inline-block;
    background: rgba(0, 255, 163, 0.1);
    color: var(--mint-bright);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 5px;
}

.timeline-content .role {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-style: italic;
}

.timeline-content p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* 24. TECH STACK (About Page) */
.tech-stack-section {
    margin-top: 100px;
}

.tech-category {
    margin-bottom: 50px;
}

.tech-category h3 {
    color: var(--mint-bright);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.tech-item:hover {
    border-color: var(--mint-bright);
    background: rgba(0, 255, 163, 0.1);
    transform: translateY(-3px);
}

.tech-item i {
    color: var(--mint-bright);
    font-size: 1.2rem;
}

.tech-item span {
    color: var(--text-white);
    font-weight: 600;
}

.card:hover {
    border-color: var(--mint-bright);
    transform: translateY(-15px) scale(1.02);
    background: #111a16;
    box-shadow: 0 20px 40px rgba(0, 255, 163, 0.1);
    transition: transform 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo), background 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.hero-main h1,
.large-title {
    backface-visibility: hidden;
    perspective: 1000px;
}


.card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--mint-bright);
}

.card p {
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* 11. MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
    header {
        padding: 30px 5%;
    }

    .nav-links {
        display: none;
        /* Can be toggled with JS if needed, but keeping it clean for now */
    }

    .hero-container {
        padding: 120px 5% 40px 5%;
        justify-content: center;
    }

    .portal-frame {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: clamp(280px, 70vw, 400px);
        height: clamp(280px, 70vw, 400px);
        margin: 30px auto;
        animation: floatMobile 6s ease-in-out infinite;
    }

    .hero-main {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .hero-bottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding-top: 30px;
        margin-top: auto;
    }

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

    .card {
        padding: 40px 30px;
    }
}

@keyframes floatMobile {

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

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

@media (max-width: 768px) {
    .main-wrapper {
        height: auto;
        min-height: 100vh;
    }

    .hero-container {
        height: auto;
        min-height: 100vh;
        border-radius: 25px;
    }

    .hero-main h1 {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .large-title {
        font-size: 2.5rem;
    }

    .content-page-container {
        padding: 120px 5% 60px 5%;
    }

    .btn-pill {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* 12. MOBILE MENU REFINEMENT */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

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

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        justify-content: center;
        align-items: center;
        z-index: 100;
    }

    .nav-links.active a {
        margin: 15px 0;
        font-size: 1.8rem;
        opacity: 0;
        animation: fadeInMobile 0.5s forwards;
    }

    .nav-links.active a:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active a:nth-child(2) {
        animation-delay: 0.2s;
    }

    .nav-links.active a:nth-child(3) {
        animation-delay: 0.3s;
    }

    .nav-links.active a:nth-child(4) {
        animation-delay: 0.4s;
    }
}

@keyframes fadeInMobile {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* 13. CARD BANNERS */
.card-banner {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.card-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(12, 17, 15, 0.9), transparent);
}

.card-content {
    position: relative;
}

.card-year {
    color: var(--mint-bright);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-category {
    background: rgba(0, 255, 163, 0.15);
    color: var(--mint-bright);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 10px;
}

.card-subtitle {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-dim);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* 14. MODAL SYSTEM */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #0c110f;
    border: 1px solid rgba(0, 255, 163, 0.1);
    border-radius: 30px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.5s var(--ease-out-expo);
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--mint-bright);
    color: #000;
}

.modal-banner {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 30px 30px 0 0;
}

.modal-content {
    padding: 40px;
}

.modal-year,
.modal-category {
    display: inline-block;
    color: var(--mint-bright);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal-category {
    background: rgba(0, 255, 163, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
}

.modal h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.modal-description {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
}

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

.modal-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
}

.btn-secondary:hover {
    border-color: var(--mint-bright);
    color: var(--mint-bright);
}

/* 15. DETAIL PAGE STYLES */
.detail-page {
    min-height: 100vh;
}

.detail-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-dark) 0%, transparent 60%);
}

.detail-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 8%;
    width: 100%;
}

.back-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--mint-bright);
}

.detail-year,
.detail-category {
    color: var(--mint-bright);
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-right: 15px;
}

.detail-category {
    background: rgba(0, 255, 163, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
}

.detail-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    margin: 15px 0 10px;
}

.detail-subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
}

.detail-content {
    padding: 80px 8%;
    max-width: 900px;
}

.detail-section {
    margin-bottom: 50px;
}

.detail-section h2 {
    font-size: 1.5rem;
    color: var(--mint-bright);
    margin-bottom: 20px;
}

.detail-section p {
    color: var(--text-dim);
    line-height: 1.8;
    font-size: 1.1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    background: rgba(0, 255, 163, 0.1);
    color: var(--mint-bright);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* 16. HERO INTRO STYLE */
.hero-intro {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--text-dim);
}

/* 17. ENHANCED MOBILE MODAL */
@media (max-width: 768px) {
    .modal {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .modal-banner {
        height: 200px;
        border-radius: 0;
    }

    .modal-content {
        padding: 25px;
    }

    .modal h2 {
        font-size: 1.8rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-actions .btn-pill {
        width: 100%;
        justify-content: center;
    }

    .detail-hero {
        height: 50vh;
    }

    .detail-hero h1 {
        font-size: 2.5rem;
    }

    .detail-content {
        padding: 40px 5%;
    }

    .card-banner {
        height: 150px;
    }
}

/* 18. MOBILE CONTACT LINK */
.mobile-contact-link {
    display: none !important;
}

.desktop-only {
    display: flex;
}

@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-contact-link {
        display: block !important;
        background: var(--mint-bright);
        color: var(--bg-dark) !important;
        padding: 15px 30px;
        border-radius: 30px;
        margin-top: 20px;
        font-weight: 700;
    }
}

/* 19. MARKDOWN CONTENT STYLING */
.markdown-content {
    color: var(--text-dim);
    line-height: 1.8;
}

.markdown-content h1,
.markdown-content h2,
.markdown-content h3 {
    color: var(--mint-bright);
    margin: 25px 0 15px;
}

.markdown-content h1 {
    font-size: 2rem;
}

.markdown-content h2 {
    font-size: 1.5rem;
}

.markdown-content h3 {
    font-size: 1.2rem;
}

.markdown-content p {
    margin-bottom: 15px;
}

.markdown-content ul,
.markdown-content ol {
    margin: 15px 0 15px 25px;
}

.markdown-content li {
    margin-bottom: 8px;
}

.markdown-content strong {
    color: var(--text-white);
}

.markdown-content blockquote {
    border-left: 3px solid var(--mint-bright);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
}

.markdown-content code {
    background: rgba(0, 255, 163, 0.1);
    padding: 3px 8px;
    border-radius: 5px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9em;
}

.markdown-content pre {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    overflow-x: auto;
    margin: 20px 0;
}

.markdown-content pre code {
    background: none;
    padding: 0;
}

.markdown-content a {
    color: var(--mint-bright);
    text-decoration: underline;
}

/* 20. DETAIL PAGE ACTIONS */
.detail-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .detail-actions {
        flex-direction: column;
    }

    .detail-actions .btn-pill {
        width: 100%;
        justify-content: center;
    }
}

/* 21. HERO CTA SECTION */
.hero-cta {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-cta .btn-pill {
    padding: 16px 32px;
}

@media (max-width: 768px) {
    .hero-main {
        max-width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-intro {
        margin-bottom: 10px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .hero-cta .btn-pill {
        width: 100%;
        justify-content: center;
    }
}

/* 22. CONTACT PAGE STYLES */
.contact-page {
    padding-top: 140px;
}

.contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.contact-hero .large-title {
    margin: 0 auto;
    max-width: 800px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-section h2,
.contact-info-section h2 {
    color: var(--mint-bright);
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--mint-bright);
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--mint-bright);
    justify-content: center;
    font-size: 1.1rem;
}

/* Contact Info Section */
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    transition: border-color 0.3s;
}

.contact-card:hover {
    border-color: var(--mint-bright);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--mint-bright);
}

.contact-card-content h3 {
    color: var(--text-white);
    margin-bottom: 5px;
}

.contact-card-content a {
    color: var(--mint-bright);
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-card-content a:hover {
    text-decoration: underline;
}

/* Social Links */
.social-title {
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-white);
    transition: all 0.3s;
}

.social-card:hover {
    background: rgba(0, 255, 163, 0.1);
    border-color: var(--mint-bright);
    transform: translateY(-3px);
}

.social-card i {
    font-size: 1.4rem;
    color: var(--mint-bright);
}

.social-card span {
    font-weight: 600;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-actions .btn-pill {
    width: 100%;
    justify-content: center;
    padding: 16px;
}

/* Contact Page Mobile */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 120px;
    }

    .contact-hero .large-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }

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