/* Reset dan variabel warna */
:root {
    --primary: #030508; /* Deep dark blueish-black */
    --secondary: #0A0F14; /* Dark blue-grey */
    --accent: #00FF9D; /* Neon green (matches logo) */
    --accent-dark: #00CC7D;
    --accent-light: #33FFB1;
    --text: #F0F4F8;
    --text-secondary: #9BA9BA;
    --card-bg: rgba(10, 15, 20, 0.65); /* Glassmorphism translucent */
    --border: rgba(0, 255, 157, 0.2); /* Neon green tinted border */
    --shadow: rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

p {
    text-align: justify;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    width: 3em;
}

.logo i {
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent);
}

/* Hero Section dengan foto di samping */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.9) 0%, rgba(10, 15, 20, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 204, 255, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--accent), #00ccff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), #00ccff);
    color: #000000;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 255, 157, 0.6);
}

.cta-button.secondary {
    background: rgba(10, 15, 20, 0.6);
    color: var(--text);
    border: 2px solid var(--accent);
    backdrop-filter: blur(5px);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--accent);
    color: #000000;
    box-shadow: 0 8px 20px rgba(0, 255, 157, 0.4);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    width: 350px;
    height: 400px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    border: 3px solid var(--border);
    transition: transform 0.5s;
}

.image-container:hover img {
    transform: scale(1.02);
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    opacity: 0.15;
    border-radius: 10px;
    z-index: 1;
    transform: translate(15px, 15px);
    transition: transform 0.4s ease;
}

.image-container:hover .image-frame {
    transform: translate(25px, 25px);
    opacity: 0.25;
}

.tech-tags {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 120%;
    gap: 10px;
    z-index: 3;
}

.tech-tag {
    background-color: var(--card-bg);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 10px inset rgba(0, 0, 0, 0.5), 0 4px 15px rgba(0, 255, 157, 0.2);
    backdrop-filter: blur(5px);
}

/* Section Styling */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    position: relative;
    color: var(--text);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

/* About Section */
#about {
    padding-bottom: 50px; /* Kurangi jarak bawah (mendekat ke projects) */
}
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-text {
    max-width: 800px;
    text-align: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.skill-tag {
    background-color: var(--card-bg);
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid var(--border);
    font-size: 1rem;
    transition: all 0.3s;
    cursor: default;
}

.skill-tag:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

/* Projects Section */
#projects {
    padding-top: 50px; /* Kurangi jarak atas (mendekat ke about) */
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.project-img {
    height: 220px;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.project-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tag {
    background-color: var(--secondary);
    padding: 5px 12px;
    border-radius: 3px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

/* Certificates Section */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cert-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    transition: transform 0.3s;
    aspect-ratio: 4 / 3;
    height: auto;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow);
    border-color: var(--accent);
}

.cert-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.cert-card:hover img {
    transform: scale(1.1);
}

.cert-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-overlay-content {
    text-align: center;
    color: var(--text);
    padding: 20px;
}

.cert-overlay-content i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.cert-overlay-content p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Certificate Modal */
.cert-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.cert-modal.active {
    display: flex;
}

.cert-modal-content {
    background-color: var(--card-bg);
    border: 1px solid var(--accent);
    border-radius: 10px;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
    animation: modalFadeIn 0.3s ease-out forwards;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cert-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-secondary);
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

.cert-close-btn:hover {
    color: var(--accent);
}

.cert-detail-container {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.cert-detail-image {
    flex: 1.2;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.cert-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cert-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cert-detail-info h3 {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.cert-detail-desc {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cert-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    margin-top: auto;
    align-self: flex-start;
    border: 2px solid var(--accent);
}

.cert-pdf-btn i {
    margin-right: 10px;
}

.cert-pdf-btn:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow);
}

@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px; /* Gap diperkecil agar pas pada layar paling kecil */
    }
    .cert-card {
        aspect-ratio: 1.414 / 1; /* Rasio standar sertifikat agar proporsional */
        height: auto;
        border-radius: 6px; /* Radius sedikit disesuaikan untuk skala mobile */
    }
    .cert-overlay-content {
        padding: 5px;
    }
    .cert-overlay-content i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    .cert-overlay-content p {
        font-size: 0.75rem; /* Diperkecil agar tak meluap */
    }
    .cert-detail-container {
        flex-direction: column;
    }
    .cert-detail-info h3 {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.contact-info p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--accent);
    font-size: 1.2rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.contact-item:hover .contact-icon {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
}

.contact-form {
    flex: 1;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px 15px;
    background-color: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 5px;
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: var(--accent);
    color: var(--primary);
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px var(--shadow);
}

/* Footer */
footer {
    background-color: var(--secondary);
    padding: 50px 0 20px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-content p {
    color: var(--text-secondary);
    margin: 15px 0 25px;
    max-width: 500px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin: 20px 0 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.social-link:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px var(--shadow);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    width: 100%;
}

/* Network Animation */
.network-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 50px;
    }
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }

    .about-text {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        text-align: center;
        transition: 0.5s ease-in-out;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        border-top: 1px solid var(--border);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .logo img {
        width: 2.5em; /* Adjusted smaller for mobile */
    }
    
    section {
        padding: 60px 0;
    }
    
    #about {
        padding-bottom: 30px;
    }
    
    #projects {
        padding-top: 30px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .projects-grid {
        display: flex;
        flex-wrap: nowrap;
        /* Tetap gunakan overflow-x: auto agar bisa discroll */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        
        /* Trik Full-Bleed Layout agar kartu tidak terlihat terpotong kaku oleh batas container */
        width: 100vw;
        margin-left: -50vw;
        left: 50%;
        position: relative;
        /* Kembalikan padding sesuai jarak container (5vw margin + 20px padding) */
        padding: 0 calc(5vw + 20px) 25px calc(5vw + 20px); 
        
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Menyembunyikan scrollbar di Firefox */
    }
    
    .projects-grid::-webkit-scrollbar {
        display: none; /* Menyembunyikan scrollbar di Chrome/Safari */
    }
    
    .projects-grid .project-card {
        flex: 0 0 calc(88% - 10px); /* 88% lebar membiarkan kotak proyek selanjutnya terlihat mengintip agar user tahu bisa digeser */
        max-width: 360px;
        scroll-snap-align: center;
    }
    
    .image-container {
        width: 280px;
        max-width: 100%;
        height: 320px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .image-container {
        width: 240px;
        max-width: 100%;
        height: 280px;
    }
    
    .tech-tags {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 5px;
        bottom: -20px;
    }

    .tech-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .stat h3 {
        font-size: 1.6rem;
    }

    .stat p {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title {
        margin-bottom: 40px;
    }

    section {
        padding: 40px 0;
    }
    
    #about {
        padding-bottom: 20px;
    }
    
    #projects {
        padding-top: 20px;
    }

    .about-text h3 {
        font-size: 1.4rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .skill-tag {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .project-img {
        height: 180px;
    }

    .project-info {
        padding: 20px;
    }

    .project-info h3 {
        font-size: 1.3rem;
    }

    .project-info p {
        font-size: 0.9rem;
    }

    /* Hapus paksa tinggi .cert-card agar rasio aspek pada layar kecil tetap proporsional (menggunakan fungsi bawaan grid 2x2 sebelumnya) */

    .cert-modal-content {
        padding: 20px;
    }

    .cert-detail-info h3 {
        font-size: 1.3rem;
    }

    .cert-detail-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .cert-pdf-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }

    .image-container {
        width: 200px;
        height: 240px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat h3 {
        font-size: 1.4rem;
    }
}

/* Tambahkan di bagian akhir style.css, sebelum media queries */

/* Form Checkbox */
.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
    accent-color: var(--accent);
}

.form-check-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Form Message */
.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: rgba(0, 255, 157, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
    display: block;
}

.form-message.error {
    background-color: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid #ff4757;
    display: block;
}

.form-message.info {
    background-color: rgba(52, 152, 219, 0.1);
    color: #3498db;
    border: 1px solid #3498db;
    display: block;
}

/* Button Loader */
.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-loader i {
    margin-right: 8px;
}

/* Email Note */
.email-note {
    margin-top: 30px;
    padding: 15px;
    background-color: rgba(0, 255, 157, 0.05);
    border-radius: 5px;
    border-left: 3px solid var(--accent);
}

.email-note p {
    color: var(--accent-light);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.email-note i {
    margin-right: 10px;
    font-size: 1rem;
}

/* Email Credit */
.email-credit {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-credit i {
    margin-right: 5px;
}

/* Scroll Animations by GSAP */
.animate-on-scroll {
    display: block; /* Kept for structural reasons but logic uses GSAP */
}

/* Noise Canvas Overlay for Renaissance feel */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}
