/* style.css - All styles moved here */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

:root {
    --white: #ffffff;
    --off-white: #f7f6f3;
    --light-grey: #efefed;
    --mid-grey: #c8c7c2;
    --dark-grey: #5a5a58;
    --near-black: #1a1a18;
    --accent: #2563eb;
    --accent-light: #dbeafe;
    --accent-dark: #1d4ed8;
    --green: #16a34a;
    --green-light: #dcfce7;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--near-black);
    overflow-x: hidden;
    line-height: 1.7;
}

/* Navbar */
nav {
    position: fixed; 
    top: 0; left: 0; right: 0; 
    z-index: 999;
    padding: 1rem 2rem;
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--light-grey);
    transition: box-shadow .3s;
}

nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.06); }

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem; 
    font-weight: 700;
    color: var(--near-black); 
    letter-spacing: -0.5px;
    text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links { 
    display: flex; 
    gap: 2rem; 
    list-style: none; 
}

.nav-links a {
    text-decoration: none; 
    color: var(--dark-grey);
    font-size: .9rem; 
    font-weight: 500; 
    letter-spacing: .3px;
    transition: color .2s;
    position: relative;
}

.nav-links a::after {
    content: ''; 
    position: absolute; 
    bottom: -4px; left: 0; right: 0; 
    height: 2px;
    background: var(--accent); 
    transform: scaleX(0); 
    transition: transform .25s;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
    background: var(--near-black); 
    color: #fff !important;
    padding: .5rem 1.2rem; 
    border-radius: 100px;
    font-weight: 500 !important; 
    transition: background .2s !important;
}

.nav-cta:hover { background: var(--accent) !important; }
.nav-cta::after { display: none !important; }

.hamburger { 
    display: none; 
    cursor: pointer; 
    flex-direction: column; 
    gap: 5px; 
}

.hamburger span { 
    display: block; 
    width: 24px; 
    height: 2px; 
    background: var(--near-black); 
    border-radius: 2px; 
    transition: .3s; 
}

/* Page Container */
.page-container {
    min-height: 100vh;
    padding-top: 80px;
}

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex; 
    align-items: center;
    padding: 6rem 2rem 4rem;
    background: var(--off-white);
    position: relative; 
    overflow: hidden;
}

.hero-bg-circle {
    position: absolute; 
    border-radius: 50%;
    background: var(--accent-light); 
    opacity: .35;
    animation: floatCircle 8s ease-in-out infinite;
}

.hbc1 { width: 500px; height: 500px; top: -150px; right: -100px; animation-delay: 0s; }
.hbc2 { width: 280px; height: 280px; bottom: -60px; left: 10%; animation-delay: -4s; }

@keyframes floatCircle {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}
/* About Section - Modern Design */
.about-modern-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-content {
    flex: 1;
}

.about-intro {
    margin-bottom: 1.5rem;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1a1a18;
}

.highlight-number {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.about-detail {
    margin-bottom: 2rem;
}

.about-detail p {
    color: #5a5a58;
    line-height: 1.7;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-card {
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: #2563eb;
}

.info-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.info-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 700;
    color: #1a1a18;
}

.about-stats {
    display: flex;
    gap: 2rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #eef2f6;
}

.stat-circle {
    text-align: center;
}

.stat-big-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-big-label {
    font-size: 0.8rem;
    color: #5a5a58;
    margin-top: 0.25rem;
}


/* Responsive */
@media (max-width: 768px) {
    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        justify-content: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .stat-big-number {
        font-size: 1.8rem;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
.hero-inner { 
    max-width: 1100px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    align-items: center; 
    position: relative; 
    z-index: 1; 
    width: 100%; 
}

.hero-badge {
    display: inline-flex; 
    align-items: center; 
    gap: .5rem;
    background: var(--green-light); 
    color: var(--green);
    padding: .35rem 1rem; 
    border-radius: 100px; 
    font-size: .82rem; 
    font-weight: 600;
    margin-bottom: 1.2rem;
    animation: fadeUp .6s ease both;
}

.badge-dot { 
    width: 7px; 
    height: 7px; 
    background: var(--green); 
    border-radius: 50%; 
    animation: pulse 1.5s infinite; 
}

@keyframes pulse { 
    0%,100% { opacity: 1; } 
    50% { opacity: .3; } 
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 900; 
    line-height: 1.1; 
    letter-spacing: -1.5px;
    color: var(--near-black);
    animation: fadeUp .7s .1s ease both;
}

.hero-title .highlight { color: var(--accent); }

.hero-sub {
    margin-top: 1rem; 
    font-size: 1.05rem; 
    color: var(--dark-grey); 
    font-weight: 400;
    animation: fadeUp .7s .2s ease both;
}

.hero-stats {
    display: flex; 
    gap: 2.5rem; 
    margin-top: 2rem;
    animation: fadeUp .7s .3s ease both;
}

.stat-num { 
    font-family: var(--font-display); 
    font-size: 2rem; 
    font-weight: 900; 
    color: var(--near-black); 
    line-height: 1; 
}

.stat-label { 
    font-size: .78rem; 
    color: var(--dark-grey); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: 500; 
    margin-top: .2rem; 
}

.hero-actions {
    display: flex; 
    gap: 1rem; 
    margin-top: 2.5rem; 
    flex-wrap: wrap;
    animation: fadeUp .7s .4s ease both;
}

.btn-primary {
    background: var(--near-black); 
    color: #fff;
    padding: .8rem 2rem; 
    border-radius: 100px;
    text-decoration: none; 
    font-weight: 600; 
    font-size: .9rem;
    transition: background .2s, transform .15s;
    display: inline-flex; 
    align-items: center; 
    gap: .5rem;
}

.btn-primary:hover { 
    background: var(--accent); 
    transform: translateY(-2px); 
}

.btn-outline {
    background: transparent; 
    color: var(--near-black);
    padding: .8rem 2rem; 
    border-radius: 100px;
    text-decoration: none; 
    font-weight: 600; 
    font-size: .9rem;
    border: 1.5px solid var(--mid-grey);
    transition: border-color .2s, transform .15s;
    display: inline-flex; 
    align-items: center; 
    gap: .5rem;
}

.btn-outline:hover { 
    border-color: var(--accent); 
    color: var(--accent); 
    transform: translateY(-2px); 
}

.hero-visual {
    display: flex; 
    flex-direction: column; 
    gap: 1rem;
    animation: fadeUp .8s .5s ease both;
}

.avatar-card {
    background: var(--white); 
    border-radius: var(--radius);
    padding: 2rem; 
    text-align: center;
    border: 1px solid var(--light-grey);
    box-shadow: 0 8px 32px rgba(0,0,0,.05);
}

.avatar {
    width: 120px; 
    height: 120px; 
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #7c3aed 100%);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-family: var(--font-display); 
    font-size: 2.6rem; 
    font-weight: 900; 
    color: #fff;
    margin: 0 auto 1rem;
}

.avatar-name { 
    font-family: var(--font-display); 
    font-size: 1.25rem; 
    font-weight: 700; 
}

.avatar-role { 
    font-size: .85rem; 
    color: var(--dark-grey); 
    margin-top: .25rem; 
}

.tech-pills { 
    display: flex; 
    flex-wrap: wrap; 
    gap: .5rem; 
    justify-content: center; 
    margin-top: 1rem; 
}

.pill {
    padding: .3rem .85rem; 
    border-radius: 100px;
    font-size: .75rem; 
    font-weight: 600; 
    letter-spacing: .3px;
}

.pill-blue { background: var(--accent-light); color: var(--accent-dark); }
.pill-purple { background: #ede9fe; color: #6d28d9; }
.pill-green { background: var(--green-light); color: var(--green); }

.mini-cards { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: .75rem; 
}

.mini-card {
    background: var(--white); 
    border: 1px solid var(--light-grey);
    border-radius: var(--radius-sm); 
    padding: 1rem;
    display: flex; 
    align-items: center; 
    gap: .75rem;
    font-size: .82rem; 
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,.03);
    transition: transform .2s, box-shadow .2s;
}

.mini-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(0,0,0,.07); 
}

.mini-icon {
    width: 36px; 
    height: 36px; 
    border-radius: var(--radius-sm);
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.1rem; 
    flex-shrink: 0;
}

@keyframes fadeUp { 
    from { opacity:0; transform:translateY(30px); } 
    to { opacity:1; transform:translateY(0); } 
}

/* Sections General */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
    font-size: .78rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    color: var(--accent); 
    margin-bottom: .75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 900; 
    color: var(--near-black); 
    letter-spacing: -1px;
    line-height: 1.15;
}

.section-desc { 
    color: var(--dark-grey); 
    max-width: 540px; 
    margin-top: .75rem; 
    font-size: 1rem; 
}

/* About Page */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 5rem; 
    align-items: center; 
    margin-top: 3.5rem; 
}

.about-text p { 
    color: var(--dark-grey); 
    margin-bottom: 1rem; 
    font-size: .97rem; 
}

.about-highlights { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 1rem; 
    margin-top: 2rem; 
}

.highlight-card {
    background: var(--off-white); 
    border-radius: var(--radius-sm); 
    padding: 1.25rem;
    border-left: 3px solid var(--accent);
}

.highlight-card h4 { 
    font-size: .82rem; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--accent); 
    font-weight: 700; 
}

.highlight-card p { 
    font-size: .9rem; 
    color: var(--near-black); 
    margin-top: .25rem; 
    font-weight: 500; 
}

/* Skills Section */
#skills { background: var(--off-white); }
.skills-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.5rem; 
    margin-top: 3rem; 
}

.skill-card {
    background: var(--white); 
    border-radius: var(--radius); 
    padding: 2rem;
    border: 1px solid var(--light-grey);
    transition: transform .25s, box-shadow .25s;
    position: relative; 
    overflow: hidden;
}

.skill-card:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 16px 40px rgba(0,0,0,.08); 
}

.skill-icon { font-size: 2rem; margin-bottom: 1rem; }
.skill-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.skill-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .75rem; }
.skill-tag {
    padding: .2rem .7rem; 
    border-radius: 100px;
    background: var(--off-white); 
    font-size: .73rem; 
    font-weight: 600; 
    color: var(--dark-grey);
    border: 1px solid var(--light-grey);
}

.skill-bar-wrap { margin-top: .75rem; }
.skill-bar-label { 
    display: flex; 
    justify-content: space-between; 
    font-size: .78rem; 
    color: var(--dark-grey); 
    margin-bottom: .35rem; 
    font-weight: 500; 
}
.skill-bar { 
    background: var(--light-grey); 
    border-radius: 100px; 
    height: 6px; 
    overflow: hidden; 
}
.skill-bar-fill { 
    height: 100%; 
    border-radius: 100px; 
    background: var(--accent); 
    transform-origin: left; 
    transform: scaleX(0); 
    transition: transform 1.2s cubic-bezier(.16,1,.3,1); 
}
.skill-bar-fill.animated { transform: scaleX(1); }

/* Projects Grid */
.projects-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    flex-wrap: wrap; 
    gap: 1rem; 
    margin-bottom: 3rem; 
}

.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter-tab {
    padding: .4rem 1rem; 
    border-radius: 100px; 
    font-size: .82rem; 
    font-weight: 600;
    border: 1.5px solid var(--light-grey); 
    cursor: pointer;
    background: var(--white); 
    color: var(--dark-grey);
    transition: .2s;
}
.filter-tab.active, .filter-tab:hover { 
    background: var(--near-black); 
    color: var(--white); 
    border-color: var(--near-black); 
}

.projects-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 1.5rem; 
}

.project-card {
    border-radius: var(--radius); 
    overflow: hidden;
    border: 1px solid var(--light-grey);
    background: var(--white);
    transition: transform .25s, box-shadow .25s;
    cursor: pointer;
}
.project-card:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 20px 50px rgba(0,0,0,.09); 
}

.project-img {
    height: 200px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 4rem; 
    position: relative; 
    overflow: hidden;
}

.project-img-overlay {
    position: absolute; 
    inset: 0; 
    background: rgba(0,0,0,0); 
    display: flex;
    align-items: center; 
    justify-content: center; 
    gap: .75rem;
    transition: background .25s;
}

.project-card:hover .project-img-overlay { background: rgba(0,0,0,.4); }

.overlay-btn {
    background: var(--white); 
    color: var(--near-black);
    padding: .5rem 1.1rem; 
    border-radius: 100px; 
    font-size: .78rem; 
    font-weight: 700;
    text-decoration: none; 
    opacity: 0; 
    transform: translateY(10px); 
    transition: .25s;
}

.project-card:hover .overlay-btn { opacity: 1; transform: translateY(0); }

.project-info { padding: 1.5rem; }
.project-category { 
    font-size: .72rem; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: var(--accent); 
    margin-bottom: .5rem; 
}
.project-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.project-info p { font-size: .85rem; color: var(--dark-grey); line-height: 1.6; }

.project-footer { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-top: 1.25rem; 
    padding-top: 1rem; 
    border-top: 1px solid var(--light-grey); 
}

.tech-stack { display: flex; gap: .4rem; flex-wrap: wrap; }
.tech-chip { 
    font-size: .72rem; 
    font-weight: 600; 
    padding: .2rem .6rem; 
    border-radius: 4px; 
    background: var(--off-white); 
    color: var(--dark-grey); 
}

.playstore-badge {
    display: inline-flex; 
    align-items: center; 
    gap: .4rem;
    background: var(--green-light); 
    color: var(--green);
    padding: .3rem .75rem; 
    border-radius: 100px; 
    font-size: .72rem; 
    font-weight: 700;
}

/* Timeline */
.timeline { position: relative; margin-top: 3rem; padding-left: 2rem; }
.timeline::before { 
    content: ''; 
    position: absolute; 
    left: 0; top: 0; bottom: 0; 
    width: 2px; 
    background: var(--light-grey); 
}
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-dot {
    position: absolute; 
    left: -2.5rem; 
    top: .35rem;
    width: 14px; 
    height: 14px; 
    border-radius: 50%;
    background: var(--accent); 
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent);
}
.timeline-card {
    background: var(--white); 
    border-radius: var(--radius); 
    padding: 2rem;
    border: 1px solid var(--light-grey);
    transition: box-shadow .25s;
}
.timeline-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,.06); }
.timeline-date { 
    font-size: .78rem; 
    font-weight: 700; 
    color: var(--accent); 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    margin-bottom: .5rem; 
}
.timeline-card h3 { font-size: 1.1rem; font-weight: 700; }
.timeline-card h4 { 
    font-size: .9rem; 
    color: var(--dark-grey); 
    font-weight: 400; 
    margin-top: .2rem; 
}
.timeline-card p { 
    font-size: .9rem; 
    color: var(--dark-grey); 
    margin-top: .75rem; 
    line-height: 1.7; 
}
.timeline-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }

/* Testimonials */
.testimonials-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 1.5rem; 
    margin-top: 3rem; 
}
.testi-card {
    background: var(--off-white); 
    border-radius: var(--radius); 
    padding: 2rem;
    border: 1px solid var(--light-grey); 
    position: relative;
    transition: transform .25s, box-shadow .25s;
}
.testi-card:hover { 
    transform: translateY(-4px); 
    box-shadow: 0 16px 40px rgba(0,0,0,.07); 
}
.testi-quote { 
    font-size: 3rem; 
    font-family: var(--font-display); 
    color: var(--accent); 
    line-height: .8; 
    margin-bottom: .5rem; 
}
.testi-card p { 
    font-size: .92rem; 
    color: var(--dark-grey); 
    line-height: 1.7; 
    font-style: italic; 
}
.testi-author { display: flex; align-items: center; gap: .75rem; margin-top: 1.5rem; }
.testi-avatar {
    width: 44px; 
    height: 44px; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-weight: 700; 
    font-size: .9rem; 
    color: #fff; 
    flex-shrink: 0;
}
.testi-author h5 { font-size: .9rem; font-weight: 700; }
.testi-author span { font-size: .78rem; color: var(--dark-grey); }
.stars { color: #f59e0b; font-size: .9rem; margin-top: .25rem; }

/* Contact Page */
#contact { background: var(--near-black); color: var(--white); }
#contact .section-label { color: #93c5fd; }
#contact .section-title { color: var(--white); }
#contact .section-desc { color: var(--mid-grey); }

.contact-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 4rem; 
    margin-top: 3rem; 
    align-items: start; 
}

.contact-info-item { 
    display: flex; 
    align-items: center; 
    gap: 1rem; 
    margin-bottom: 1.5rem; 
}

.contact-icon {
    width: 48px; 
    height: 48px; 
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.08); 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.3rem; 
    flex-shrink: 0;
}

.contact-info-item h4 { 
    font-size: .85rem; 
    color: var(--mid-grey); 
    font-weight: 500; 
}

.contact-info-item p { color: var(--white); font-weight: 600; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field label { 
    font-size: .8rem; 
    font-weight: 600; 
    color: var(--mid-grey); 
    text-transform: uppercase; 
    letter-spacing: .5px; 
}
.form-field input, .form-field textarea {
    background: rgba(255,255,255,.06); 
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm); 
    padding: .85rem 1.1rem;
    color: var(--white); 
    font-family: var(--font-body); 
    font-size: .92rem;
    transition: border-color .2s, background .2s;
    outline: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.3); }
.form-field input:focus, .form-field textarea:focus {
    border-color: var(--accent); 
    background: rgba(255,255,255,.09);
}
.form-field textarea { resize: vertical; min-height: 120px; }

.btn-submit {
    background: var(--accent); 
    color: var(--white);
    padding: 1rem 2.5rem; 
    border-radius: 100px;
    font-weight: 700; 
    font-size: .95rem; 
    border: none; 
    cursor: pointer;
    transition: background .2s, transform .15s;
    align-self: flex-start; 
    display: flex; 
    align-items: center; 
    gap: .5rem;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); }

.social-links { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.social-link {
    width: 44px; 
    height: 44px; 
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,.06); 
    border: 1px solid rgba(255,255,255,.1);
    display: flex; 
    align-items: center; 
    justify-content: center;
    text-decoration: none; 
    font-size: 1.2rem; 
    color: var(--white);
    transition: background .2s, transform .15s;
}
.social-link:hover { background: var(--accent); transform: translateY(-3px); }

/* Footer */
footer {
    background: #111; 
    color: var(--mid-grey);
    text-align: center; 
    padding: 2rem;
    font-size: .82rem;
}
footer a { color: var(--accent); text-decoration: none; }

/* Scroll Animations */
.reveal { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: opacity .7s ease, transform .7s ease; 
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* Responsive */
@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .hero-stats { justify-content: center; }
    .hero-actions { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-visual { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: 0; right: 0; 
        background: var(--white); 
        padding: 1.5rem 2rem; 
        border-bottom: 1px solid var(--light-grey); 
        box-shadow: 0 10px 30px rgba(0,0,0,.08); 
        gap: 1.2rem; 
    }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .mini-cards { grid-template-columns: 1fr 1fr; }
    .about-highlights { grid-template-columns: 1fr; }
}

/* Loading Spinner */
.loader {
    text-align: center;
    padding: 2rem;
    font-size: 1.2rem;
    color: var(--dark-grey);
}

