/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00CED1;
    --secondary-color: #1E90FF;
    --accent-color: #00BFFF;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow: 0 10px 25px rgba(0, 206, 209, 0.15);
    --shadow-lg: 0 20px 40px rgba(0, 206, 209, 0.25);
    
    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
}

[data-theme="dark"] {
    --primary-color: #00CED1;
    --secondary-color: #1E90FF;
    --accent-color: #00BFFF;
    --dark-color: #f8fafc;
    --light-color: #1e293b;
    --gray-color: #94a3b8;
    --white: #0f172a;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --shadow: 0 10px 25px rgba(0, 206, 209, 0.2);
    --shadow-lg: 0 20px 40px rgba(0, 206, 209, 0.3);
    
    /* Dark mode backgrounds */
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border-color: #334155;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.95);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

/* Dark mode logo */
[data-theme="dark"] .logo-img {
    content: url('photo/ulvenax_logo_darkmode.png');
}

.logo h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.theme-toggle i {
    transition: transform 0.3s ease;
}

.theme-toggle:hover i {
    transform: rotate(20deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    margin-bottom: 3rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 20%;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 20%;
    animation-delay: -2s;
}

.floating-card:nth-child(3) {
    bottom: 20%;
    left: 40%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}
* Section Styles */
section {
    padding: 6rem 0;
    margin: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-color);
}

/* About Section */
.about {
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.about-content {
    display: grid;
    gap: 4rem;
}

.about-story h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-story p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vm-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.vm-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.vm-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.vm-card ul {
    list-style: none;
    color: var(--text-secondary);
}

.vm-card li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.vm-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Team Section */
.team-section {
    margin-top: 3rem;
}

.team-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.team-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-card p {
    color: var(--text-secondary);
}

/* Projects Section */
.projects {
    background: var(--bg-secondary);
    transition: background-color 0.3s ease;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-card.featured {
    grid-column: span 2;
}

.project-image {
    height: 200px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.project-icon i {
    font-size: 2rem;
    color: var(--white);
}

.project-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-content h3 {
    font-size: 1.5rem;
    margin: 0;
    color: var(--text-primary);
}

.project-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.project-status {
    display: flex;
    justify-content: flex-end;
}

.status-badge {
    background: var(--gradient);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section h3 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
    }
    
    .project-card.featured {
        grid-column: span 1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
}/* Succ
ess and Error Messages */
.success-message,
.error-message {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 2rem;
    animation: slideIn 0.5s ease;
}

.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.success-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-actions .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.success-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.success-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.success-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.countdown-info {
    margin: 1rem 0;
    opacity: 0.8;
}

.countdown-info small {
    font-size: 0.875rem;
}

#countdown {
    font-weight: bold;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    display: inline-block;
    min-width: 20px;
    text-align: center;
}

.error-message {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: var(--white);
}

.error-message i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PHP Form Enhancements */
.contact-form form {
    transition: all 0.3s ease;
}

.form-group input:invalid,
.form-group textarea:invalid {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group textarea:valid {
    border-color: #10b981;
}

/* Loading state for form submission */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.btn-primary.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
* Dark Mode Specific Enhancements */
[data-theme="dark"] .hero::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23334155" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

[data-theme="dark"] .floating-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .scroll-arrow {
    border-color: var(--primary-color);
}

/* Dark mode glow effects */
[data-theme="dark"] .vm-card:hover,
[data-theme="dark"] .team-card:hover,
[data-theme="dark"] .project-card:hover,
[data-theme="dark"] .contact-card:hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

[data-theme="dark"] .btn-primary {
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

[data-theme="dark"] .btn-primary:hover {
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

/* Dark mode footer */
[data-theme="dark"] .footer {
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
}

/* Smooth theme transition */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Theme toggle animation */
.theme-toggle {
    position: relative;
    overflow: hidden;
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.theme-toggle:hover::before {
    width: 100px;
    height: 100px;
}

/* Dark mode specific gradients */
[data-theme="dark"] .gradient-text {
    background: linear-gradient(135deg, #00CED1, #1E90FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .section-title {
    background: linear-gradient(135deg, #00CED1, #1E90FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .logo h2 {
    background: linear-gradient(135deg, #00CED1, #1E90FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark mode particles effect */
[data-theme="dark"] .hero {
    position: relative;
}

[data-theme="dark"] .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(168, 85, 247, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(168, 85, 247, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
    pointer-events: none;
}

@keyframes sparkle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

/* Enhanced mobile dark mode */
@media (max-width: 768px) {
    [data-theme="dark"] .nav-menu {
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}/* S
ection Separators */
section:not(.hero):not(:last-child)::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: var(--gradient);
    margin: 3rem auto 0;
    border-radius: 2px;
    opacity: 0.3;
}

/* Better section spacing */
.about {
    margin-top: 4rem;
}

.projects {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.contact {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* Section headers with better spacing */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

/* Add breathing room between content blocks */
.about-content {
    display: grid;
    gap: 5rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
}

.team-section {
    margin-top: 5rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 2rem;
}

/* Mobile spacing adjustments */
@media (max-width: 768px) {
    section {
        padding: 4rem 0;
        margin: 1.5rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .projects-grid {
        gap: 2rem;
    }
    
    .hero {
        margin-bottom: 2rem;
    }
}/* E
nhanced Project Cards */
.project-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.project-link {
    display: inline-block;
    margin-top: auto;
    padding: 0.8rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.project-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.3);
}

/* Status Badge Variations */
.status-badge.publishing {
    background: linear-gradient(135deg, #10b981, #059669);
}

.status-badge.development {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.status-badge.ready {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.status-badge.commercial {
    background: linear-gradient(135deg, #00CED1, #1E90FF);
}

/* Projects Grid Enhancement */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.project-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 300px;
}

.project-card.featured .project-image {
    height: auto;
}

.project-card.featured .project-image img {
    height: 100%;
    min-height: 300px;
}

/* Mobile adjustments for featured card */
@media (max-width: 768px) {
    .project-card.featured {
        grid-column: span 1;
        display: block;
    }
    
    .project-card.featured .project-image img {
        height: 200px;
        min-height: 200px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .project-card.featured {
        grid-column: span 1;
        display: block;
    }
}/* Pr
oject Detail Pages */
.project-hero {
    padding: 8rem 0 4rem;
    background: var(--bg-secondary);
    margin-top: 0;
}

.project-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.project-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff !important;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.project-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.project-status-hero {
    margin-bottom: 2rem;
}

.project-tags-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.project-tags-hero .tag {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.project-image-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* Project Details Section */
.project-details {
    padding: 6rem 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.details-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.details-content h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--text-primary);
}

.details-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Feature List */
.feature-list {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    margin: 0;
    font-size: 1rem;
}

/* Tech List */
.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
}

.tech-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tech-list li:last-child {
    border-bottom: none;
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-stats {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.project-stats h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 600;
    color: var(--text-primary);
}

.stat-value {
    color: var(--text-secondary);
    text-align: right;
}

.cta-section {
    background: var(--gradient);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
}

.cta-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn {
    background: #ffffff !important;
    color: #00CED1 !important;
    font-weight: 600 !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cta-section .btn:hover {
    background: #f8f9fa !important;
    color: #00CED1 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Back to Projects */
.back-to-projects {
    padding: 3rem 0;
    text-align: center;
    background: var(--bg-secondary);
}

.back-to-projects .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Logo link */
.logo a {
    text-decoration: none;
}

.logo a h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .project-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .project-hero h1 {
        font-size: 2.5rem;
    }
    
    .project-image-hero img {
        height: 250px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-item i {
        margin-top: 0;
    }
    
    .project-tags-hero {
        justify-content: center;
    }
}/* Re
lease Info Card */
.release-info {
    margin: 2rem 0;
}

.release-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.release-card i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.release-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.release-card p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Enhanced feature items for Eco Sadaqa */
.feature-item h4 {
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .release-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .release-card i {
        font-size: 2rem;
    }
}

/* Dark mode logo styles */
[data-theme="dark"] .project-logo {
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

/* Mobile responsive for project logos */
@media (max-width: 768px) {
    .project-logo {
        width: 40px;
        height: 40px;
    }
    
    .project-header {
        gap: 0.75rem;
    }
    
    .project-content h3 {
        font-size: 1.3rem;
    }
}/*
 Status overlay on project image */
.project-image {
    position: relative;
}

.status-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.status-overlay .status-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

/* Responsive adjustments for status overlay */
@media (max-width: 768px) {
    .status-overlay {
        top: 10px;
        right: 10px;
    }
    
    .status-overlay .status-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}/* Proje
ct Detail Page Styles */
.project-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.project-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.project-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff !important;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.project-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.project-status-hero {
    margin-bottom: 1rem;
}

.project-tags-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
}

.project-image-hero img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-details {
    padding: 4rem 0;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.details-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.details-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.5rem;
}

.tech-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-stats {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.project-stats h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.stat-value {
    font-weight: 600;
    color: var(--text-primary);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.cta-section h3 {
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.back-to-projects {
    padding: 2rem 0;
    text-align: center;
    background: var(--bg-secondary);
}

/* Responsive Design for Project Pages */
@media (max-width: 768px) {
    .project-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .project-hero h1 {
        font-size: 2rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}/* Re
lease Info Styles */
.release-info {
    margin: 2rem 0;
}

.release-card {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.release-card i {
    font-size: 2rem;
    opacity: 0.9;
}

.release-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.release-card p {
    margin: 0;
    opacity: 0.9;
}
/*
 IMPROVED Project Detail Page Styles - High Contrast */
.project-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #00CED1 0%, #1E90FF 100%);
    color: white;
}

.project-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.project-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white !important;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.project-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6;
}

.project-status-hero {
    margin-bottom: 1rem;
}

.project-tags-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(255, 255, 255, 0.25) !important;
    color: white !important;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-image-hero img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-details {
    padding: 4rem 0;
    background: #ffffff !important;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.details-content h2 {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem;
    color: #1f2937 !important;
    font-weight: 700;
}

.details-content h3 {
    font-size: 1.75rem !important;
    margin: 3rem 0 1.5rem;
    color: #1f2937 !important;
    font-weight: 600;
}

.details-content p {
    font-size: 1.1rem !important;
    line-height: 1.7;
    color: #374151 !important;
    margin-bottom: 2rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc !important;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2rem !important;
    color: #00CED1 !important;
    margin-top: 0.25rem;
    min-width: 2rem;
}

.feature-item h4 {
    margin-bottom: 0.75rem;
    color: #1f2937 !important;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-item p {
    color: #4b5563 !important;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.tech-list {
    list-style: none;
    padding: 0;
    background: #f8fafc !important;
    border-radius: 12px;
    padding: 1.5rem;
}

.tech-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 2rem;
    color: #374151 !important;
    font-size: 1rem;
    line-height: 1.5;
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981 !important;
    font-weight: bold;
    font-size: 1.2rem;
}

.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-stats {
    background: #ffffff !important;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.project-stats h3 {
    margin-bottom: 1.5rem;
    color: #1f2937 !important;
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 500;
    color: #6b7280 !important;
    font-size: 0.95rem;
}

.stat-value {
    font-weight: 600;
    color: #1f2937 !important;
    font-size: 0.95rem;
}

.cta-section {
    background: linear-gradient(135deg, #00CED1, #1E90FF) !important;
    color: white !important;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.cta-section h3 {
    margin-bottom: 1rem;
    color: white !important;
    font-size: 1.5rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1rem;
}

.back-to-projects {
    padding: 3rem 0;
    text-align: center;
    background: #f9fafb !important;
}

/* Release Info Styles - Updated */
.release-info {
    margin: 2rem 0;
}

.release-card {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.release-card i {
    font-size: 2rem;
    color: white !important;
    opacity: 0.9;
}

.release-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: white !important;
}

.release-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Responsive Design for Project Pages - Updated */
@media (max-width: 768px) {
    .project-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .project-hero h1 {
        font-size: 2rem !important;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}
/* ====
= PERFECT PROJECT DETAIL STYLES - LIGHT & DARK MODE ===== */

/* Project Hero Section */
.project-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #00CED1 0%, #1E90FF 100%);
    color: white;
}

.project-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.breadcrumb {
    margin-bottom: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: white;
    text-decoration: underline;
}

.project-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.project-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.project-status-hero {
    margin-bottom: 1rem;
}

.project-tags-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags-hero .tag {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-image-hero img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Project Details Section - Light Mode */
.project-details {
    padding: 4rem 0;
    background: var(--bg-primary);
    transition: background-color 0.3s ease;
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.details-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.details-content h3 {
    font-size: 1.75rem;
    margin: 3rem 0 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.details-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    min-width: 2rem;
}

.feature-item h4 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Tech List */
.tech-list {
    list-style: none;
    padding: 0;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.tech-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Sidebar */
.details-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-stats {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.project-stats h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 500;
    color: var(--text-tertiary);
    font-size: 0.95rem;
}

.stat-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.cta-section h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Back to Projects */
.back-to-projects {
    padding: 3rem 0;
    text-align: center;
    background: var(--bg-secondary);
}

/* Release Info */
.release-info {
    margin: 2rem 0;
}

.release-card {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.release-card i {
    font-size: 2rem;
    color: white;
    opacity: 0.9;
}

.release-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: white;
}

.release-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== DARK MODE SPECIFIC OVERRIDES ===== */
[data-theme="dark"] .project-details {
    background: var(--bg-primary);
}

[data-theme="dark"] .feature-item {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .feature-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .tech-list {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .tech-list li {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

[data-theme="dark"] .project-stats {
    background: var(--card-bg);
    border-color: var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

[data-theme="dark"] .stat-item {
    border-color: var(--border-light);
}

[data-theme="dark"] .back-to-projects {
    background: var(--bg-secondary);
}

[data-theme="dark"] .cta-section {
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .release-card {
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .project-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .project-hero h1 {
        font-size: 2rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .feature-item i {
        align-self: center;
    }
    
    .details-content h2 {
        font-size: 2rem;
    }
    
    .details-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .project-hero {
        padding: 6rem 0 3rem;
    }
    
    .project-hero h1 {
        font-size: 1.75rem;
    }
    
    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .project-details {
        padding: 3rem 0;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .project-stats {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem;
    }
}/* ===== F
ORCE DARK MODE OVERRIDES - HIGHEST PRIORITY ===== */

/* Dark Mode - Force Override All Elements */
[data-theme="dark"] .project-details {
    background: var(--bg-primary) !important;
}

[data-theme="dark"] .details-content h2 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .details-content h3 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .details-content p {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .feature-item {
    background: var(--card-bg) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .feature-item i {
    color: var(--primary-color) !important;
}

[data-theme="dark"] .feature-item h4 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .feature-item p {
    color: var(--text-secondary) !important;
}

[data-theme="dark"] .tech-list {
    background: var(--card-bg) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .tech-list li {
    color: var(--text-secondary) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .tech-list li:before {
    color: var(--success-color) !important;
}

[data-theme="dark"] .project-stats {
    background: var(--card-bg) !important;
    border-color: var(--border-color) !important;
}

[data-theme="dark"] .project-stats h3 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .stat-label {
    color: var(--text-tertiary) !important;
}

[data-theme="dark"] .stat-value {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .stat-item {
    border-color: var(--border-light) !important;
}

[data-theme="dark"] .back-to-projects {
    background: var(--bg-secondary) !important;
}

[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
}

[data-theme="dark"] .cta-section h3 {
    color: white !important;
}

[data-theme="dark"] .cta-section p {
    color: rgba(255, 255, 255, 0.9) !important;
}

[data-theme="dark"] .release-card {
    background: linear-gradient(135deg, var(--success-color), #059669) !important;
    color: white !important;
}

[data-theme="dark"] .release-card i {
    color: white !important;
}

[data-theme="dark"] .release-card h4 {
    color: white !important;
}

[data-theme="dark"] .release-card p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Force Dark Mode for Any Remaining White Backgrounds */
[data-theme="dark"] .project-details * {
    background-color: transparent;
}

[data-theme="dark"] .project-details .container {
    background: transparent !important;
}

/* Ensure All Text Elements Follow Dark Mode */
[data-theme="dark"] .project-details h1,
[data-theme="dark"] .project-details h2,
[data-theme="dark"] .project-details h3,
[data-theme="dark"] .project-details h4,
[data-theme="dark"] .project-details h5,
[data-theme="dark"] .project-details h6 {
    color: var(--text-primary) !important;
}

[data-theme="dark"] .project-details p,
[data-theme="dark"] .project-details span,
[data-theme="dark"] .project-details li {
    color: var(--text-secondary) !important;
}

/* Force Dark Mode for All Cards and Containers */
[data-theme="dark"] .project-details .feature-item,
[data-theme="dark"] .project-details .tech-list,
[data-theme="dark"] .project-details .project-stats,
[data-theme="dark"] .project-details .release-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-color) !important;
}

/* Special Cases */
[data-theme="dark"] .project-details .release-card {
    background: linear-gradient(135deg, var(--success-color), #059669) !important;
    border: none !important;
}

[data-theme="dark"] .project-details .cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border: none !important;
}

/* Override Any Remaining Light Mode Styles */
[data-theme="dark"] .project-details section {
    background: transparent !important;
}

[data-theme="dark"] .project-details .container,
[data-theme="dark"] .project-details .details-grid,
[data-theme="dark"] .project-details .details-content,
[data-theme="dark"] .project-details .details-sidebar {
    background: transparent !important;
}

/* ===== SHARP DARK MODE - HIGH CONTRAST FIX ===== */

/* Dark Mode - Crystal Clear Text */
[data-theme="dark"] .project-hero h1 {
    color: #ffffff !important;
    text-shadow: none !important;
    opacity: 1 !important;
    font-weight: 700 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

[data-theme="dark"] .project-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    opacity: 1 !important;
}

[data-theme="dark"] .breadcrumb {
    opacity: 1 !important;
}

[data-theme="dark"] .breadcrumb a {
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1 !important;
}

[data-theme="dark"] .project-tags-hero .tag {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    opacity: 1 !important;
    backdrop-filter: blur(10px) !important;
}

/* Project Details - Sharp Dark Mode */
[data-theme="dark"] .project-details {
    background: #0f172a !important;
}

[data-theme="dark"] .details-content h2 {
    color: #f8fafc !important;
    opacity: 1 !important;
}

[data-theme="dark"] .details-content h3 {
    color: #f1f5f9 !important;
    opacity: 1 !important;
}

[data-theme="dark"] .details-content p {
    color: #cbd5e1 !important;
    opacity: 1 !important;
}

/* Feature Items - High Contrast */
[data-theme="dark"] .feature-item {
    background: #1e293b !important;
    border-color: #334155 !important;
    opacity: 1 !important;
}

[data-theme="dark"] .feature-item h4 {
    color: #f8fafc !important;
    opacity: 1 !important;
}

[data-theme="dark"] .feature-item p {
    color: #cbd5e1 !important;
    opacity: 1 !important;
}

[data-theme="dark"] .feature-item i {
    color: #00CED1 !important;
    opacity: 1 !important;
}

/* Tech List - Sharp */
[data-theme="dark"] .tech-list {
    background: #1e293b !important;
    border-color: #334155 !important;
    opacity: 1 !important;
}

[data-theme="dark"] .tech-list li {
    color: #cbd5e1 !important;
    border-color: #334155 !important;
    opacity: 1 !important;
}

[data-theme="dark"] .tech-list li:before {
    color: #10b981 !important;
    opacity: 1 !important;
}

/* Project Stats - High Contrast */
[data-theme="dark"] .project-stats {
    background: #1e293b !important;
    border-color: #334155 !important;
    opacity: 1 !important;
}

[data-theme="dark"] .project-stats h3 {
    color: #f8fafc !important;
    opacity: 1 !important;
}

[data-theme="dark"] .stat-label {
    color: #94a3b8 !important;
    opacity: 1 !important;
}

[data-theme="dark"] .stat-value {
    color: #f1f5f9 !important;
    opacity: 1 !important;
}

[data-theme="dark"] .stat-item {
    border-color: #334155 !important;
    opacity: 1 !important;
}

/* Back to Projects - Dark */
[data-theme="dark"] .back-to-projects {
    background: #020617 !important;
    opacity: 1 !important;
}

/* Release Card - Bright */
[data-theme="dark"] .release-card {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

[data-theme="dark"] .release-card h4 {
    color: #ffffff !important;
    opacity: 1 !important;
}

[data-theme="dark"] .release-card p {
    color: rgba(255, 255, 255, 0.95) !important;
    opacity: 1 !important;
}

[data-theme="dark"] .release-card i {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* CTA Section - Bright */
[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, #00CED1, #1E90FF) !important;
    color: #ffffff !important;
    opacity: 1 !important;
}

[data-theme="dark"] .cta-section h3 {
    color: #ffffff !important;
    opacity: 1 !important;
}

[data-theme="dark"] .cta-section p {
    color: rgba(255, 255, 255, 0.95) !important;
    opacity: 1 !important;
}

[data-theme="dark"] .cta-section .btn {
    background: #ffffff !important;
    color: #00CED1 !important;
    font-weight: 600 !important;
    border: 2px solid #ffffff !important;
}

[data-theme="dark"] .cta-section .btn:hover {
    background: #f0f0f0 !important;
    color: #00CED1 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3) !important;
}

/* Remove All Opacity and Blur Effects in Dark Mode */
[data-theme="dark"] * {
    opacity: 1 !important;
}

[data-theme="dark"] .project-details *:not(.project-tags-hero .tag) {
    backdrop-filter: none !important;
}

/* Force Sharp Text Rendering */
[data-theme="dark"] .project-details {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    text-rendering: optimizeLegibility !important;
}

/* Ensure No Transparency Issues */
[data-theme="dark"] .project-details .container,
[data-theme="dark"] .project-details .details-grid,
[data-theme="dark"] .project-details .details-content,
[data-theme="dark"] .project-details .details-sidebar,
[data-theme="dark"] .project-details .feature-list {
    background: transparent !important;
    opacity: 1 !important;
}


/* ===== EKRAN GÖRÜNTÜLERİ SECTION ===== */
.screenshots-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
}



.screenshots-carousel-wrapper {
    position: relative;
    padding: 2rem 0;
    overflow: visible;
    width: 100%;
    max-width: 100vw;
}

.screenshots-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 4rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
}

.screenshots-carousel::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-8px);
}

/* Mobil Telefon Frame */
.phone-frame {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.phone-frame:hover {
    box-shadow: 
        0 25px 70px rgba(0, 206, 209, 0.3),
        0 0 0 2px rgba(0, 206, 209, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Telefon Notch (Üst çentik) */
.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0f172a;
    border-radius: 0 0 20px 20px;
    z-index: 2;
}

.phone-notch::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.phone-frame img:hover {
    transform: scale(1.02);
}

/* Ekran Başlık ve Açıklama */
.screenshot-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.screenshot-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Carousel Butonları */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--border-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 206, 209, 0.3);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.carousel-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Dark Mode */
[data-theme="dark"] .phone-frame {
    background: linear-gradient(145deg, #334155, #1e293b);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .phone-frame:hover {
    box-shadow: 
        0 25px 70px rgba(0, 206, 209, 0.4),
        0 0 0 2px rgba(0, 206, 209, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .carousel-btn {
    background: rgba(30, 41, 59, 0.95);
    border-color: var(--border-color);
    color: var(--primary-color);
}

[data-theme="dark"] .carousel-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 1400px) {
    .screenshot-item {
        width: 260px;
    }
    
    .phone-frame {
        width: 260px;
        height: 520px;
    }
}

@media (max-width: 1200px) {
    .screenshot-item {
        width: 240px;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
}

@media (max-width: 768px) {
    .screenshots-carousel-wrapper {
        margin: 2rem -20px;
        padding: 1rem 20px;
    }
    
    .screenshots-carousel {
        gap: 1.5rem;
    }
    
    .screenshot-item {
        width: 220px;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .screenshot-item {
        width: 200px;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 30px;
        padding: 10px;
    }
    
    .phone-notch {
        width: 100px;
        height: 24px;
    }
    
    .phone-frame img {
        border-radius: 24px;
    }
}

@media (max-width: 480px) {
    .screenshot-item {
        width: 200px;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
        border-radius: 30px;
        padding: 10px;
    }
    
    .phone-notch {
        width: 100px;
        height: 24px;
    }
    
    .phone-frame img {
        border-radius: 24px;
    }
}


/* ===== SCREENSHOT LIGHTBOX ===== */
.screenshot-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-lightbox.active {
    opacity: 1;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-caption {
    color: white;
    margin-top: 1rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .lightbox-content img {
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}


/* ===== SCROLL TO SCREENSHOTS - PREMIUM ===== */
.scroll-to-screenshots {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.screenshots-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #00CED1;
    font-weight: 600;
    font-size: 0.9rem;
}

.screenshots-badge i {
    font-size: 1rem;
}

.scroll-arrow {
    color: white;
    font-size: 1.2rem;
    animation: float-arrow 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.scroll-to-screenshots:hover .screenshots-badge {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0, 206, 209, 0.3),
        0 0 0 1px rgba(0, 206, 209, 0.2);
    background: rgba(255, 255, 255, 1);
}

.scroll-to-screenshots:hover .scroll-arrow {
    animation: float-arrow-fast 1s ease-in-out infinite;
}

@keyframes float-arrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.7;
    }
}

@keyframes float-arrow-fast {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* Dark Mode */
[data-theme="dark"] .screenshots-badge {
    background: rgba(15, 23, 42, 0.95);
    color: #00CED1;
    box-shadow: 
        0 4px 20px rgba(0, 206, 209, 0.2),
        0 0 0 1px rgba(0, 206, 209, 0.2);
}

[data-theme="dark"] .scroll-to-screenshots:hover .screenshots-badge {
    background: rgba(15, 23, 42, 1);
    box-shadow: 
        0 8px 30px rgba(0, 206, 209, 0.4),
        0 0 0 1px rgba(0, 206, 209, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .scroll-to-screenshots {
        bottom: -20px;
    }
    
    .screenshots-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .screenshots-badge i {
        font-size: 0.9rem;
    }
    
    .scroll-arrow {
        font-size: 1rem;
    }
}


/* ===== SCREENSHOTS CTA CARD ===== */
.screenshots-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.2);
    position: relative;
    overflow: hidden;
}

.screenshots-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.screenshots-cta:hover::before {
    left: 100%;
}

.screenshots-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.35);
}

.screenshots-cta:active {
    transform: translateY(-2px) scale(1);
}

.screenshots-cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.screenshots-cta-content i {
    font-size: 2rem;
    opacity: 0.95;
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        opacity: 0.95;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.screenshots-cta-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.screenshots-cta-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.screenshots-cta > i {
    font-size: 1.2rem;
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* Dark Mode */
[data-theme="dark"] .screenshots-cta {
    box-shadow: 0 4px 15px rgba(0, 206, 209, 0.3);
}

[data-theme="dark"] .screenshots-cta:hover {
    box-shadow: 0 8px 25px rgba(0, 206, 209, 0.45);
}
