:root {
    --bg-color: #0A0A0C;
    --sidebar-bg: rgba(18, 18, 22, 0.4);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-color: #8b5cf6;
    --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #d946ef 100%);
    --border-color: rgba(255, 255, 255, 0.05);
    --hover-bg: rgba(255, 255, 255, 0.04);
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(139, 92, 246, 0.07), transparent 30%),
        radial-gradient(circle at 85% 85%, rgba(217, 70, 239, 0.07), transparent 30%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .about-greeting, .hero-title {
    font-family: var(--font-heading);
}

/* App Container Layout */
.app-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 260px;
    background-color: var(--sidebar-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: fixed;
    left: 0;
    top: 0;
    border-radius: 24px;
    margin: 1.5rem 0 1.5rem 1.5rem;
    height: calc(100vh - 3rem);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7);
    z-index: 10;
    overflow-y: auto;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-item i {
    font-size: 1.2rem;
}

.nav-item:hover, .nav-item.active {
    background-color: var(--hover-bg);
    color: var(--text-primary);
    box-shadow: inset 3px 0 0 var(--accent-color);
    transform: translateX(5px);
}

.nav-item.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    margin-left: auto;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    justify-content: space-between;
    margin-top: auto;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--hover-bg);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: 280px; /* Sidebar width + margin */
    padding: 4rem 5rem 1rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-role {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.highlight::after {
    display: none;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    padding-left: 1.5rem;
    border-left: 3px solid transparent;
    border-image: var(--accent-gradient) 1;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    padding: 1rem 1.5rem;
    border-radius: 0 12px 12px 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 20px -8px rgba(139, 92, 246, 0.7);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 25px -8px rgba(139, 92, 246, 0.9);
    color: #ffffff;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.hero-social {
    display: flex;
    gap: 1.5rem;
}

.hero-social-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-social-link:hover {
    color: var(--text-primary);
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: visible;
    background: var(--hover-bg);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 4px solid var(--border-color);
}

.circle-decoration {
    position: absolute;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(139,92,246,0.6), rgba(217,70,239,0.4));
    border-radius: 50%;
    top: -20px;
    right: -20px;
    z-index: 1;
    filter: blur(50px);
    opacity: 0.6;
    animation: premiumPulse 8s infinite alternate ease-in-out;
}

@keyframes premiumPulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.4; border-radius: 50%; }
    50% { transform: scale(1.15) rotate(90deg); opacity: 0.6; border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%; }
    100% { transform: scale(1) rotate(180deg); opacity: 0.4; border-radius: 50%; }
}

/* Mobile Header */
.mobile-header {
    display: none;
    padding: 1.5rem;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-content {
        padding: 3rem;
        margin-left: 280px;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-120%);
        transition: transform 0.3s ease;
        margin: 0;
        height: 100vh;
        border-radius: 0;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        padding: 6rem 2rem 2rem;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .image-wrapper {
        width: 100%;
        max-width: 300px;
        height: 300px;
        aspect-ratio: 1/1;
    }
}

/* About Section */
.about-section {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-content {
    background: var(--hover-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3.5rem 4rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-greeting {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem !important;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-signature {
    margin-top: 3rem !important;
}

.signature-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0.5rem;
    display: inline-block;
    font-family: 'Georgia', serif;
    font-style: italic;
}

@media (max-width: 768px) {
    .about-content {
        padding: 2rem;
    }
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.project-card {
    background: var(--sidebar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.project-link {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: #a855f7;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wip-card {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(145deg, var(--sidebar-bg), rgba(239, 68, 68, 0.05));
}
.wip-card:hover {
    border-color: rgba(239, 68, 68, 0.6);
}


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

.skill-card {
    background: var(--sidebar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.skill-header i {
    font-size: 1.5rem;
    color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.skill-header h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.skill-header h3 span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 0.5rem;
}

.skill-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.skills-tags-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.skills-tag-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.skills-tag-group h3 i {
    color: #a855f7;
}

.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tags-wrapper span {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tags-wrapper span:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.tags-wrapper span.highlight-tag {
    background: rgba(168, 85, 247, 0.05);
    border-color: rgba(168, 85, 247, 0.2);
    color: #e9d5ff;
}

.tags-wrapper span.highlight-tag:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    color: #ffffff;
}


/* Album Section */
.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
    margin-top: 1rem;
}

.album-card {
    background: var(--sidebar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.album-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.album-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.album-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.album-card:hover .album-img-wrapper img {
    transform: scale(1.06);
}

.album-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
}

.album-tag {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.album-tag i {
    color: #a855f7;
}

.album-info {
    padding: 1.2rem 1.4rem 1.4rem;
}

.album-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.album-info p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.album-info p strong {
    color: rgba(255,255,255,0.85);
}


/* Certificates Section */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.8rem;
}

.cert-card {
    background: var(--sidebar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.cert-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.cert-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #fff;
}

.cert-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.cert-card:hover .cert-img-wrapper img {
    transform: scale(1.04);
}

.cert-pdf-wrapper {
    overflow: hidden;
    background: #f3f4f6;
}

.cert-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(99, 102, 241, 0.85);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cert-badge-green {
    background: rgba(16, 185, 129, 0.85);
}

.cert-badge-gold {
    background: rgba(180, 140, 30, 0.9);
}

.cert-info {
    padding: 1.2rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-grow: 1;
}

.cert-issuer {
    font-size: 0.78rem;
    color: #a855f7;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cert-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
}

.cert-info p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex-grow: 1;
}

.cert-info p strong {
    color: rgba(255,255,255,0.85);
}

.cert-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.cert-meta span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cert-meta span i {
    color: #a855f7;
}

.cert-download-btn {
    margin-top: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.cert-download-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* Footer */
.app-footer {
    width: 100%;
    text-align: center;
    padding: 2rem 0 1rem 0;
    margin-top: auto;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
}


/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,0.15);
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
}

.email-icon { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.wa-icon { background: rgba(16, 185, 129, 0.2); color: #34d399; }

.contact-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.2rem;
}

.contact-value {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-btn:hover {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 0.9rem 1.2rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: rgba(52, 211, 153, 0.5);
    background: rgba(0,0,0,0.3);
}

.submit-btn {
    width: 100%;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    font-family: var(--font-primary);
}

.submit-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}


.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
}
.form-status.success {
    display: flex;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.form-status.error {
    display: flex;
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

