/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #1e1b4b 0%, #7c3aed 25%, #ec4899 50%, #7c3aed 75%, #1e1b4b 100%);
    min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.8));
}

.neon-text {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(236, 72, 153, 0.8), 0 0 60px rgba(168, 85, 247, 0.6);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: white;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.8);
    filter: brightness(1.1);
}

.btn-secondary {
    border: 2px solid #ec4899;
    color: #ec4899;
    background: transparent;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.3);
}

.btn-secondary:hover {
    background: rgba(236, 72, 153, 0.1);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
    transform: scale(1.05);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.header.scrolled {
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
}

.logo i {
    color: #ec4899;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.8));
}

.logo span {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: #ec4899;
    text-shadow: 0 0 10px rgba(236, 72, 153, 0.8);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(236, 72, 153, 0.3);
    padding: 20px;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav.active {
    display: flex;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(236, 72, 153, 0.3));
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #d1d5db;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 64px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(236, 72, 153, 0.6));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.feature-card:hover {
    border-color: rgba(236, 72, 153, 0.7);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.5);
    transform: translateY(-5px) scale(1.02);
}

.feature-card i {
    font-size: 48px;
    color: #ec4899;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.8));
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-card p {
    color: #d1d5db;
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 20px;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(236, 72, 153, 0.4));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.info-card:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.card-header i {
    font-size: 32px;
    color: #ec4899;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.8));
}

.card-header h3 {
    font-size: 24px;
}

.card-content p {
    margin-bottom: 8px;
    color: #d1d5db;
}

.card-content strong {
    color: #a855f7;
}

.status-active {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    text-align: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(236, 72, 153, 0.6));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.feature-item:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
    transform: scale(1.05);
}

.feature-item i {
    font-size: 48px;
    color: #ec4899;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.8));
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    color: #d1d5db;
    font-size: 14px;
}

/* Services Section */
.services {
    position: relative;
}

.services-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.15));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 10;
}

.service-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(236, 72, 153, 0.5));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.service-card:hover {
    border-color: rgba(236, 72, 153, 0.7);
    box-shadow: 0 0 40px rgba(236, 72, 153, 0.5);
    transform: scale(1.05);
}

.service-card i {
    font-size: 48px;
    color: #ec4899;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.8));
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.6;
}

.services-cta {
    margin-top: 64px;
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(236, 72, 153, 0.6));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 16px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.cta-card h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-card p {
    color: #d1d5db;
    margin-bottom: 24px;
}

/* Technical Responsible Section */
.technical-responsible {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
}

.responsible-content {
    max-width: 800px;
    margin: 0 auto;
}

.responsible-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(236, 72, 153, 0.5));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 24px;
    padding: 48px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.responsible-card:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 50px rgba(236, 72, 153, 0.5);
}

.responsible-info {
    text-align: center;
    margin-bottom: 32px;
}

.responsible-avatar {
    width: 128px;
    height: 128px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
}

.responsible-avatar i {
    font-size: 64px;
    color: white;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.responsible-info h3 {
    font-size: 32px;
    margin-bottom: 8px;
}

.responsible-info h4 {
    font-size: 24px;
    color: #ec4899;
    font-weight: 600;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.detail-item {
    background: rgba(124, 58, 237, 0.4);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(236, 72, 153, 0.3);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.detail-item i {
    color: #ec4899;
    margin-bottom: 8px;
}

.detail-item .label {
    display: block;
    color: #a855f7;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-item .value {
    display: block;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.qualifications {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(236, 72, 153, 0.6));
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(236, 72, 153, 0.4);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.qualifications h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

.qualifications ul {
    list-style: none;
}

.qualifications li {
    color: #d1d5db;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.qualifications li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #ec4899;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.6);
}

.responsible-note {
    text-align: center;
    margin-top: 32px;
}

.responsible-note p {
    color: #d1d5db;
    font-size: 14px;
}

/* Contact Section */
.contact {
    position: relative;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(236, 72, 153, 0.15));
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 10;
}

.contact-info .info-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(236, 72, 153, 0.5));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    padding: 12px;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

.contact-icon i {
    color: white;
    font-size: 24px;
}

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-details p {
    color: #d1d5db;
}

.form-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(236, 72, 153, 0.5));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}

.form-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.success-message {
    text-align: center;
    padding: 32px;
}

.success-message i {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.7));
}

.success-message h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.success-message p {
    color: #d1d5db;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(30, 27, 75, 0.6);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 8px;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.3);
}

.form-group textarea {
    resize: none;
}

/* Location Section */
.location {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.map-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(236, 72, 153, 0.5));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.3);
}

.map-card:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 35px rgba(236, 72, 153, 0.4);
}

.map-embed {
    aspect-ratio: 16/9;
    background: rgba(30, 27, 75, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(236, 72, 153, 0.3);
    margin-bottom: 16px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.detail-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(236, 72, 153, 0.5));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(236, 72, 153, 0.4);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.detail-card:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.detail-icon {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    padding: 12px;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

.detail-icon i {
    color: white;
    font-size: 24px;
}

.detail-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.detail-content p {
    color: #d1d5db;
    line-height: 1.6;
}

.detail-content ul {
    list-style: none;
    color: #d1d5db;
}

.detail-content li {
    margin-bottom: 4px;
    position: relative;
    padding-left: 16px;
}

.detail-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ec4899;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.6);
}

.location-cta {
    margin-top: 48px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(30, 27, 75, 1), rgba(124, 58, 237, 0.6));
    border-top: 1px solid rgba(236, 72, 153, 0.4);
    padding: 48px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: #d1d5db;
    margin-bottom: 16px;
    max-width: 400px;
}

.company-info p {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 4px;
}

.footer-contact h3,
.footer-hours h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.contact-list,
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item,
.hours-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i,
.hours-item i {
    color: #ec4899;
    margin-top: 2px;
}

.contact-item span,
.hours-item div {
    color: #d1d5db;
    font-size: 14px;
}

.hours-item div p {
    margin-bottom: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(236, 72, 153, 0.4);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright p,
.footer-responsible p {
    color: #d1d5db;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .responsible-card,
    .info-card,
    .form-card,
    .map-card,
    .detail-card,
    .cta-card {
        padding: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}