:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #7f8c8d;
    --white: #fff;
    --gray-light: #f5f5f5;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-terminal {
    background-color: #1e1e1e;
    color: #4CAF50;
    font-family: monospace;
    border: 1px solid #4CAF50;
}

.btn-terminal:hover {
    background-color: #4CAF50;
    color: white;
}

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background-color: var(--light-color);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.network-status {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.8);
    padding: 10px 15px;
    border-radius: 30px;
    width: fit-content;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #4CAF50;
    animation: pulse 1.5s infinite;
}

.signal-bars {
    display: flex;
    align-items: flex-end;
    height: 20px;
    margin-left: 15px;
}

.signal-bars .bar {
    width: 4px;
    margin-right: 3px;
    background-color: #4CAF50;
}

.signal-bars .bar:nth-child(1) { height: 5px; }
.signal-bars .bar:nth-child(2) { height: 10px; }
.signal-bars .bar:nth-child(3) { height: 15px; }
.signal-bars .bar:nth-child(4) { height: 20px; }
.signal-bars .bar:nth-child(5) { height: 15px; animation: signal-pulse 2s infinite; }

.hero-image {
    flex: 1;
}

.server-animation {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto;
}

.server {
    width: 180px;
    height: 220px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 8px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
}

.led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 15px;
    background-color: #4CAF50;
    animation: pulse 1.5s infinite;
}

.drive-bay {
    height: 25px;
    background-color: rgba(0,0,0,0.2);
    margin-bottom: 10px;
    border-radius: 3px;
}

.drive-activity {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 30px;
    height: 5px;
    background-color: #3498db;
    border-radius: 3px;
    animation: drive-activity 2s infinite;
}

.network-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.line {
    position: absolute;
    height: 2px;
    background-color: rgba(52, 152, 219, 0.3);
    transform-origin: left center;
    animation: line-pulse 3s infinite;
}

.line:nth-child(1) {
    width: 100px;
    top: 30%;
    left: 0;
    animation-delay: 0s;
}

.line:nth-child(2) {
    width: 150px;
    top: 50%;
    left: 0;
    animation-delay: 0.5s;
}

.line:nth-child(3) {
    width: 120px;
    top: 70%;
    left: 0;
    animation-delay: 1s;
}

/* Support Tracker */
.support-tracker {
    background-color: var(--primary-color);
    padding: 30px 0;
    color: white;
}

.support-tracker .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.tracker-card {
    display: flex;
    align-items: center;
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    min-width: 250px;
}

.tracker-card i {
    font-size: 2.5rem;
    margin-right: 20px;
    color: var(--secondary-color);
}

.tracker-info h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.tracker-counter {
    font-size: 2rem;
    font-weight: 700;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card ul {
    margin-top: 20px;
    text-align: left;
}

.service-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-image {
    flex: 1;
}

.team-photo {
    background-color: #ddd;
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.team-photo p {
    color: white;
    z-index: 2;
    font-weight: 500;
}

.team-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background-color: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.advantage-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.advantage-card h3 {
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: var(--gray-light);
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.info-item a {
    color: var(--text-color);
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes drive-activity {
    0%, 100% { width: 30px; }
    50% { width: 80px; }
}

@keyframes line-pulse {
    0% { transform: scaleX(0); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: scaleX(1); opacity: 0; }
}

@keyframes signal-pulse {
    0%, 100% { height: 15px; }
    50% { height: 5px; }
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.server-rack {
    width: 120px;
    height: 180px;
    background-color: #1a1a1a;
    border-radius: 5px;
    position: relative;
    padding: 15px;
}

.server-blade {
    height: 20px;
    background-color: #333;
    margin-bottom: 10px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.server-blade::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
}

.server-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4CAF50;
    box-shadow: 0 0 10px #4CAF50;
    animation: pulse 1.5s infinite;
}

.loader p {
    margin-top: 20px;
    color: white;
}

/* Terminal Window */
.terminal-window {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: #1e1e1e;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 100;
    transform: translateY(120%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.terminal-window.show {
    transform: translateY(0);
}

.terminal-header {
    background-color: #3a3a3a;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-btn.red { background-color: #ff5f56; }
.terminal-btn.yellow { background-color: #ffbd2e; }
.terminal-btn.green { background-color: #27c93f; }

.terminal-title {
    color: #b3b3b3;
    font-size: 0.8rem;
    font-family: monospace;
}

.terminal-body {
    padding: 12px;
    height: 180px;
    overflow-y: auto;
}

.terminal-content {
    font-family: 'Courier New', monospace;
    color: #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.terminal-prompt {
    color: #4CAF50;
}

.typed-text {
    display: inline;
}

.cursor {
    animation: blink 1s infinite;
    color: #f0f0f0;
}

@keyframes loading {
    100% {
        left: 100%;
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .about-content,
    .contact-container {
        flex-direction: column;
    }
    
    .hero-content,
    .about-text,
    .contact-form {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .main-nav ul {
        margin: 15px 0;
        justify-content: center;
    }
    
    .main-nav ul li {
        margin: 0 10px;
    }
    
    .hero {
        padding: 180px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .terminal-window {
        width: 280px;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Support Tracker Styles */
.support-tracker {
    background-color: var(--primary-color);
    padding: 30px 0;
    color: white;
}

.support-tracker .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.tracker-card {
    background-color: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.tracker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.tracker-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(52, 152, 219, 0.6);
    animation: pulse 2s infinite;
}

.tracker-info {
    flex: 1;
}

.tracker-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.tracker-counter {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tracker-counter .counter {
    font-size: 2rem;
    font-weight: 700;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.status-indicator.online {
    background-color: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.trend {
    font-size: 0.9rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 10px;
}

.trend.up {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.trend.down {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}
/* About Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.section-title .highlight {
    color: var(--secondary-color);
}

.about-description {
    margin-bottom: 40px;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.stat-icon {
    font-size: 2rem;
    color: rgba(52, 152, 219, 0.1);
    position: absolute;
    top: 10px;
    right: 10px;
}

.about-image {
    flex: 1;
}

.team-photo {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    position: relative;
}

.team-photo img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.photo-overlay h3 {
    margin-bottom: 5px;
}

.certifications {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.cert-badge {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cert-badge i {
    color: var(--secondary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        max-width: 250px;
        margin: 0 auto;
    }
}
/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 320px;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-link {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-hours,
.contact-address {
    color: var(--text-light);
    line-height: 1.6;
}

.map-link {
    margin-top: 15px;
}

.map-link a {
    color: var(--secondary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Animații */
.pulse {
    animation: pulse 2s infinite;
}

.fly {
    animation: fly 3s infinite ease-in-out;
}

.bounce {
    animation: bounce 2s infinite;
}

.animated-card:hover .pulse,
.animated-card:hover .fly,
.animated-card:hover .bounce {
    animation-play-state: paused;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fly {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        max-width: 100%;
    }
}





/* Meniu mobil */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    z-index: 1001;
}

/* Stiluri pentru ecrane mici */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
        order: 1;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--primary-color);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 15px 0;
    }
    
    .main-nav ul li a {
        color: white;
        font-size: 1.1rem;
    }
    
    .header-contact {
        margin-left: auto;
        margin-right: 15px;
    }
    
    /* Chat widget pentru mobil */
    .live-chat {
        width: 100%;
        height: 70vh;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    
    .chat-toggle {
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
    }
}

/* Animație pentru butonul meniului */
.mobile-menu-toggle .fa-bars {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active .fa-bars {
    transform: rotate(90deg);
}

/* Overlay pentru meniul deschis */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* Terminal Window Styles */
.terminal-window {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    transform: translateY(0);
    transition: all 0.3s ease;
    overflow: hidden;
}

.terminal-window.closed {
    transform: translateY(120%);
}

.terminal-header {
    background-color: #3a3a3a;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: move;
    user-select: none;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.2s ease;
}

.terminal-btn.red { background-color: #ff5f56; }
.terminal-btn.yellow { background-color: #ffbd2e; }
.terminal-btn.green { background-color: #27c93f; }

.terminal-btn.red:hover { background-color: #ff3b30; }
.terminal-btn.yellow:hover { background-color: #ffa700; }
.terminal-btn.green:hover { background-color: #1ad043; }

.terminal-title {
    color: #b3b3b3;
    font-size: 0.8rem;
    font-family: monospace;
    margin-left: 15px;
}

.terminal-body {
    padding: 12px;
    height: 180px;
    overflow-y: auto;
}

.terminal-content {
    font-family: 'Courier New', monospace;
    color: #f0f0f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.terminal-prompt {
    color: #4CAF50;
}

.typed-text {
    display: inline;
}

.cursor {
    animation: blink 1s infinite;
    color: #f0f0f0;
}

/* Toggle button for terminal */
.terminal-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #1e1e1e;
    color: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.terminal-toggle:hover {
    transform: scale(1.1);
}

.terminal-toggle.hidden {
    opacity: 0;
    visibility: hidden;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .terminal-window {
        width: 90%;
        right: 5%;
        bottom: 10px;
    }
    
    .terminal-toggle {
        bottom: 10px;
        right: 10px;
    }
}