/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #000;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333;
}

.btn-outline:hover {
    background: #333;
    color: #ffffff;
}

.btn-primary.large, .btn-secondary.large {
    padding: 16px 40px;
    font-size: 18px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00d4ff;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #00d4ff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00d4ff;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 15px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.phone-number i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 212, 255, 0.1));
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.title-sub {
    display: block;
    font-size: 1.5rem;
    color: #00d4ff;
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #cccccc;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Services Preview */
.services-preview {
    background: #111111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid #333;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card.featured {
    border: 2px solid #00d4ff;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #00d4ff;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 212, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 3rem;
    color: #000;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.service-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.features li:before {
    content: '✓';
    color: #00d4ff;
    font-weight: bold;
    margin-right: 10px;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 16px;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: #000;
}

.feature-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #cccccc;
}

/* Gallery */
.gallery {
    background: #111111;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: #cccccc;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
}

.stars {
    color: #ffd700;
    margin-bottom: 1rem;
}

.testimonial-content p {
    color: #cccccc;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    color: #ffffff;
    font-size: 1rem;
}

.author-info span {
    color: #00d4ff;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-logo span {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #00d4ff;
    color: #000;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.contact-info i {
    color: #00d4ff;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-contact .btn-primary {
        display: none;
    }
    
    .phone-number {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a, #000000);
    padding: 8rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid #333;
}

.page-header-content h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header-content p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.breadcrumb {
    color: #888;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #00d4ff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Services Page Styles */
.pc-configuration {
    background: #1a1a1a;
    border-radius: 16px;
    margin-bottom: 3rem;
    overflow: hidden;
    border: 1px solid #333;
    position: relative;
}

.pc-configuration.featured {
    border: 2px solid #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
}

.featured-banner {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #000;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.config-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding: 3rem;
}

.config-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.config-badge.basic {
    background: #4CAF50;
    color: #000;
}

.config-badge.pro {
    background: #00d4ff;
    color: #000;
}

.config-badge.extreme {
    background: #ff6b35;
    color: #fff;
}

.config-info h3 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.config-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.price-range {
    margin-bottom: 2rem;
}

.price-from {
    color: #888;
    font-size: 0.9rem;
    display: block;
}

.price {
    color: #00d4ff;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: #222;
    border-radius: 8px;
}

.spec-item i {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-top: 2px;
}

.spec-item strong {
    color: #ffffff;
    display: block;
    font-size: 0.9rem;
}

.spec-item span {
    color: #cccccc;
    font-size: 0.9rem;
}

.performance-info {
    background: #222;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.performance-info h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.performance-info ul {
    list-style: none;
}

.performance-info li {
    color: #cccccc;
    padding: 0.3rem 0;
    border-bottom: 1px solid #333;
}

.performance-info li:before {
    content: '▶';
    color: #00d4ff;
    margin-right: 10px;
}

.config-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.config-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Workstations */
.workstations {
    background: #111111;
}

.workstation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.workstation-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.workstation-card:hover {
    transform: translateY(-5px);
}

.workstation-image {
    height: 250px;
    overflow: hidden;
}

.workstation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workstation-content {
    padding: 2rem;
}

.workstation-content h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.workstation-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.workstation-specs {
    list-style: none;
    margin-bottom: 2rem;
}

.workstation-specs li {
    color: #cccccc;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
}

.workstation-specs li:before {
    content: '✓';
    color: #00d4ff;
    margin-right: 10px;
}

/* Additional Services */
.additional-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    text-align: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #000;
}

.service-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-item p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.service-item ul {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.service-item li {
    color: #cccccc;
    padding: 0.3rem 0;
    font-size: 0.9rem;
}

.service-item li:before {
    content: '•';
    color: #00d4ff;
    margin-right: 8px;
}

.service-price {
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

/* Warranty Section */
.warranty-section {
    background: #111111;
}

.warranty-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.warranty-features {
    display: grid;
    gap: 1.5rem;
}

.warranty-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warranty-feature i {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-top: 0.3rem;
}

.warranty-feature h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.warranty-feature p {
    color: #cccccc;
}

.warranty-image img {
    width: 100%;
    border-radius: 8px;
}

/* About Page Styles */
.our-story {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-intro {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
}

.story-timeline {
    position: relative;
    padding-left: 2rem;
}

.story-timeline:before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #00d4ff;
}

.timeline-item {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #00d4ff;
    border-radius: 50%;
}

.timeline-year {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: #00d4ff;
    min-width: 60px;
    margin-right: 1rem;
}

.timeline-content h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #cccccc;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

/* Mission & Values */
.mission-values {
    background: #111111;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    text-align: center;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: #000;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 212, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.member-overlay .social-links {
    display: flex;
    gap: 1rem;
}

.member-overlay .social-links a {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-info {
    padding: 2rem;
}

.member-info h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #00d4ff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.member-info p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.member-expertise {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.expertise-tag {
    background: #333;
    color: #00d4ff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Stats Section */
.stats-section {
    background: #111111;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #000;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    font-family: 'Orbitron', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    color: #888;
    font-size: 0.9rem;
}

/* Facilities Section */
.facilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.facility-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.facility-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.facility-feature i {
    color: #00d4ff;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.facility-feature h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.facility-feature p {
    color: #cccccc;
}

.facilities-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.facility-image {
    border-radius: 8px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Certifications */
.certifications-section {
    background: #111111;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.cert-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
    text-align: center;
}

.cert-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.cert-item h4 {
    color: #00d4ff;
    font-size: 1rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

/* Contact Form */
.contact-form-container {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #333;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-header p {
    color: #cccccc;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #222;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #222;
    border: 2px solid #333;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-item input[type="radio"] + .checkmark {
    border-radius: 50%;
}

.checkbox-item input:checked + .checkmark {
    background: #00d4ff;
    border-color: #00d4ff;
}

.checkbox-item input:checked + .checkmark:after {
    content: '✓';
    color: #000;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-item input[type="radio"]:checked + .checkmark:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.checkbox-item span:not(.checkmark) {
    color: #cccccc;
    font-size: 0.9rem;
}

.privacy-checkbox {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.privacy-checkbox a {
    color: #00d4ff;
    text-decoration: none;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

/* Contact Info */
.contact-info-container {
    display: grid;
    gap: 2rem;
}

.contact-info-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #333;
}

.contact-info-card h3 {
    color: #00d4ff;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #000;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #cccccc;
    margin-bottom: 0.3rem;
}

.contact-details small {
    color: #888;
    font-size: 0.8rem;
}

.emergency-contact {
    background: #2a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #ff6b35;
}

.emergency-contact h4 {
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.emergency-contact p {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b35;
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.emergency-contact small {
    display: block;
    color: #888;
    font-size: 0.8rem;
}

.social-contact {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #333;
}

.social-contact h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.social-contact .social-links {
    display: grid;
    gap: 0.8rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #00d4ff;
}

.social-link i {
    width: 24px;
    font-size: 1.2rem;
}

/* Map Section */
.map-section {
    background: #111111;
    padding: 4rem 0;
}

.map-header {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.map-placeholder {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    text-align: center;
    color: #ffffff;
}

.map-info h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.location-info h3 {
    color: #00d4ff;
    margin-bottom: 2rem;
}

.transport-option {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.transport-option i {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.transport-option h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.transport-option p {
    color: #cccccc;
    margin-bottom: 0.3rem;
}

.visit-note {
    background: #2a1a1a;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #00d4ff;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.visit-note i {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.visit-note p {
    color: #cccccc;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #222;
}

.faq-question h4 {
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.faq-answer ul {
    color: #cccccc;
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 5rem 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    margin-bottom: 3rem;
}

.last-updated {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-intro p {
    color: #cccccc;
    line-height: 1.6;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333;
}

.policy-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul,
.policy-section ol {
    color: #cccccc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.responsible-info {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.responsible-info p {
    margin-bottom: 0.5rem;
}

.data-categories {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.data-category {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.data-category h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-category i {
    font-size: 1.2rem;
}

.purposes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.purpose-item {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.purpose-icon i {
    color: #000;
    font-size: 1.5rem;
}

.purpose-item h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.purpose-item p {
    margin-bottom: 1rem;
}

.legal-basis {
    color: #00d4ff;
    font-size: 0.8rem;
    font-style: italic;
}

.retention-table {
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
    overflow: hidden;
    margin-top: 1.5rem;
}

.retention-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #333;
}

.retention-row:last-child {
    border-bottom: none;
}

.retention-type,
.retention-period {
    padding: 1rem;
    color: #cccccc;
}

.retention-type {
    background: #222;
    font-weight: 600;
}

.recipients-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.recipient-item {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.recipient-item h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recipient-item i {
    font-size: 1.2rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.right-item {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}

.right-item i {
    color: #00d4ff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.right-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.right-item p {
    font-size: 0.9rem;
}

.rights-contact {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #333;
    margin-top: 2rem;
}

.rights-contact h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.security-item {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}

.security-item i {
    color: #00d4ff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security-item h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.security-item p {
    font-size: 0.9rem;
}

.cookies-types {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cookie-type {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.cookie-type h4 {
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.authority-contact {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    margin-top: 1rem;
}

.authority-contact p {
    margin-bottom: 0.3rem;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method i {
    color: #00d4ff;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-method h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-method p {
    margin-bottom: 0.3rem;
}

.contact-method small {
    color: #888;
    font-size: 0.8rem;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .config-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .warranty-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facilities-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facilities-gallery {
        grid-template-columns: 1fr;
    }
    
    .purposes-grid,
    .rights-grid,
    .security-measures {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

/* Loading animations */
.loading {
    background: linear-gradient(90deg, #333 25%, #555 50%, #333 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
