/* CSS Variables - Futuristic Theme */
:root {
    --primary-color: #00f3ff;
    --primary-dark: #00c9d6;
    --secondary-color: #7e57c2;
    --accent-color: #ff1a75;
    --background-dark: #0f172a;
    --background-darker: #0a1120;
    --card-bg: rgba(25, 35, 60, 0.8);
    --text-light: #ffffff;
    --text-gray: #cbd5e1;
    --text-dark: #f1f5f9;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
    --transition-fast: all 0.2s ease;
    --transition: all 0.4s ease;
    --transition-slow: all 0.6s ease;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.4);
    --glow-primary: 0 0 15px rgba(0, 243, 255, 0.5);
    --glow-secondary: 0 0 15px rgba(126, 87, 194, 0.4);
    --container-width: 1400px;
    --neon-text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--background-darker);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 243, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(126, 87, 194, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(255, 26, 117, 0.03) 0%, transparent 30%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--background-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-content {
    text-align: center;
    padding: 40px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 243, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.loading-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: loadingGlow 2s infinite;
}

.neon-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-shadow: var(--neon-text-shadow);
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.neon-logo span {
    display: inline-block;
    animation: neonPulse 2s infinite alternate;
}

.neon-logo span:nth-child(odd) {
    animation-delay: 0.2s;
}

.neon-logo span:nth-child(even) {
    animation-delay: 0.4s;
}

@keyframes neonPulse {
    from {
        text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
        opacity: 1;
    }
    to {
        text-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color);
        opacity: 0.8;
    }
}

@keyframes loadingGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.loading-bar {
    width: 300px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 20px auto;
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    animation: loadingProgress 3s ease-in-out infinite;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.loading-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 20px;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(10, 17, 32, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

.language-switcher {
    display: flex;
    gap: 8px;
    margin-left: 30px;
}

.lang-btn {
    padding: 6px 16px;
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 30px;
    background: rgba(25, 35, 60, 0.6);
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.lang-btn:hover, .lang-btn.active {
    background: rgba(0, 243, 255, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.admin-access-btn {
    padding: 8px 20px;
    background: linear-gradient(90deg, #ff1a75, #ff4d94);
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(255, 26, 117, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-access-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 25px rgba(255, 26, 117, 0.7);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.3);
    border-radius: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    animation: pulseBadge 3s infinite;
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 243, 255, 0);
    }
}

.hero-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-badge span {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--neon-text-shadow);
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.cta-btn {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.cta-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-btn {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
}

.primary-btn:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 243, 255, 0.3);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(0, 243, 255, 0.4);
}

.secondary-btn:hover {
    background: rgba(0, 243, 255, 0.1);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    animation: rotateGlow 15s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-block;
    padding: 10px 30px;
    background: transparent;
    border: 2px solid rgba(0, 243, 255, 0.4);
    color: var(--primary-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 1px;
}

.view-all-btn:hover {
    background: rgba(0, 243, 255, 0.1);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--background-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 243, 255, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 243, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
    animation: shine 1.5s;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translateX(-100%);
    }
    100% {
        transform: rotate(45deg) translateX(100%);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    border: 2px solid rgba(0, 243, 255, 0.3);
    position: relative;
    z-index: 1;
}

.service-icon i {
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.service-link {
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* News & Blog Sections */
.news-section, .blog-section {
    padding: 100px 0;
    background: var(--background-dark);
}

.news-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card, .blog-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(5px);
}

.news-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.news-image, .blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.news-image img, .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img, .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.news-category, .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    background: rgba(0, 243, 255, 0.8);
    color: var(--background-darker);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.news-date, .blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.85);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 243, 255, 0.3);
    backdrop-filter: blur(5px);
}

.news-content, .blog-content {
    padding: 25px;
}

.news-content h3, .blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
    transition: var(--transition);
}

.news-card:hover .news-content h3, .blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.news-content p, .blog-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-author, .blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.news-author img, .blog-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(126, 87, 194, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 243, 255, 0.05) 0%, transparent 30%);
    z-index: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(126, 87, 194, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary-color);
    border: 2px solid rgba(126, 87, 194, 0.3);
    position: relative;
    z-index: 1;
}

.contact-details h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.contact-details p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 243, 255, 0.1);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.contact-form:hover {
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 20px;
    background: rgba(10, 17, 32, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: var(--border-radius-sm);
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.2);
    background: rgba(10, 17, 32, 0.8);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 4px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* Footer */
.site-footer {
    background: var(--background-darker);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.social-links a:hover {
    background: rgba(0, 243, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 3px 0;
}

.footer-links a::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(10, 17, 32, 0.6);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: var(--border-radius-sm);
    color: var(--text-light);
    font-family: inherit;
}

.newsletter-btn {
    background: var(--primary-color);
    border: none;
    width: 50px;
    border-radius: var(--border-radius-sm);
    color: var(--background-darker);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.footer-contact {
    margin-top: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-gray);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-contact-item:hover {
    color: var(--primary-color);
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.95rem;
}

.heart {
    color: #ff4d94;
    animation: pulseHeart 1s infinite;
}

@keyframes pulseHeart {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 10px;
}

.footer-bottom-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.15);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 243, 255, 0.3);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: rgba(0, 243, 255, 0.3);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 900;
        border-top: 1px solid rgba(0, 243, 255, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .main-nav.active {
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-section {
        padding: 150px 0 70px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .language-switcher {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .admin-access-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .neon-logo {
        font-size: 2.5rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid, .news-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
/* News & Blog Sections - Futuristic Design */
.news-section, .blog-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.news-section {
    background: linear-gradient(135deg, #0a1120 0%, #0f172a 100%);
}

.blog-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.news-glow, .blog-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(126, 87, 194, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.blog-glow {
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
}

.news-grid, .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.full-news-grid, .full-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.news-card, .blog-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
}

.news-card:hover, .blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.news-card::before, .blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: var(--transition);
    z-index: 1;
}

.news-card:hover::before, .blog-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.news-image, .blog-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.news-image img, .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img, .blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.news-category, .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 15px;
    background: rgba(0, 243, 255, 0.15);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 243, 255, 0.3);
    letter-spacing: 1px;
}

.news-date, .blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.85);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(0, 243, 255, 0.3);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.news-content, .blog-content {
    padding: 25px;
}

.news-content h3, .blog-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
    transition: var(--transition);
    line-height: 1.3;
}

.news-card:hover .news-content h3, .blog-card:hover .blog-content h3 {
    color: var(--primary-color);
}

.news-content p, .blog-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.05rem;
    height: 75px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-stats, .blog-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.news-stats span, .blog-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-author, .blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
}

.news-author img, .blog-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.news-author-info, .blog-author-info {
    flex: 1;
}

.news-author-info h4, .blog-author-info h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2px;
}

.news-author-info span, .blog-author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.news-read-more, .blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 15px;
}

.news-read-more:hover, .blog-read-more:hover {
    gap: 12px;
    color: white;
}

/* Full News/Blog Pages */
.full-news-section, .full-blog-section {
    padding: 100px 0;
    background: var(--background-dark);
    display: none;
}

/* Single Post Page */
.single-post-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a1120 0%, #0f172a 100%);
    display: none;
    position: relative;
    overflow: hidden;
}

.single-post-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(126, 87, 194, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 243, 255, 0.05) 0%, transparent 30%);
    z-index: 0;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.single-post-header {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.single-post-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.single-post-header:hover img {
    transform: scale(1.05);
}

.single-post-meta {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.single-post-category {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(0, 243, 255, 0.15);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 243, 255, 0.3);
}

.single-post-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.single-post-info {
    display: flex;
    gap: 25px;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.single-post-content {
    padding: 50px;
}

.single-post-content h2 {
    font-size: 2.2rem;
    margin: 40px 0 25px;
    color: white;
    position: relative;
    padding-bottom: 15px;
}

.single-post-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.single-post-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.single-post-content img {
    max-width: 100%;
    border-radius: var(--border-radius);
    margin: 30px 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.single-post-content img:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.post-tags {
    display: flex;
    gap: 10px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.post-tag {
    padding: 6px 15px;
    background: rgba(126, 87, 194, 0.15);
    color: var(--secondary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(126, 87, 194, 0.3);
}

.post-author {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 243, 255, 0.1);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    margin: 40px 0;
}

.post-author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    flex-shrink: 0;
}

.post-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-author-info {
    flex: 1;
}

.post-author-info h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 10px;
}

.post-author-info p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-author-social {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.post-author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.post-author-social a:hover {
    background: rgba(0, 243, 255, 0.2);
    transform: translateY(-3px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover, .pagination-btn.active {
    background: rgba(0, 243, 255, 0.2);
    transform: translateY(-3px);
}

.pagination-btn.active {
    background: var(--primary-color);
    color: var(--background-darker);
}

/* Related Posts */
.related-posts {
    margin-top: 80px;
}

/* Admin News/Blog Management Styles */
.admin-news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.admin-news-item {
    background: rgba(10, 17, 32, 0.6);
    border-radius: var(--border-radius-sm);
    padding: 25px;
    border: 1px solid rgba(0, 243, 255, 0.1);
    transition: var(--transition);
}

.admin-news-item:hover {
    border-color: rgba(0, 243, 255, 0.3);
    background: rgba(10, 17, 32, 0.8);
}

.admin-news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
}

.admin-news-title {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
}

.admin-news-actions {
    display: flex;
    gap: 10px;
}

.admin-news-actions button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 243, 255, 0.1);
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.admin-news-actions button:hover {
    background: rgba(0, 243, 255, 0.2);
}

.admin-news-content {
    margin-bottom: 15px;
}

.admin-news-content p {
    color: var(--text-gray);
    line-height: 1.5;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.95rem;
}

.admin-news-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.admin-news-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    padding-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .news-content p, .blog-content p {
        height: auto;
        -webkit-line-clamp: unset;
    }
    
    .single-post-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .news-section, .blog-section, .full-news-section, .full-blog-section, .single-post-section {
        padding: 80px 0;
    }
    
    .news-grid, .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .full-news-grid, .full-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .single-post-header {
        height: 400px;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-content {
        padding: 30px;
    }
    
    .post-author {
        flex-direction: column;
        text-align: center;
    }
    
    .post-author-img {
        width: 80px;
        height: 80px;
    }
    
    .admin-news-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .news-image, .blog-image {
        height: 180px;
    }
    
    .news-content h3, .blog-content h3 {
        font-size: 1.4rem;
    }
    
    .single-post-header {
        height: 300px;
    }
    
    .single-post-title {
        font-size: 1.8rem;
    }
    
    .pagination-btn {
        width: 40px;
        height: 40px;
    }
}