.contact-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #050510 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iODAiIGhlaWdodD0iODAiIHZpZXdCb3g9IjAgMCA4MCA4MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjQwIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDMpIj48L3JlY3Q+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIj48L3JlY3Q+PC9zdmc+') repeat;
    opacity: 0.3;
    z-index: 0;
}.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}.contact-form {
    flex: 1;
    min-width: 300px;
    background: rgba(20, 20, 40, 0.7);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: all 0.3s ease;
}.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}.form-header {
    margin-bottom: 30px;
    text-align: center;
}.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
}.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}.form-group {
    flex: 1;
    margin-bottom: 20px;
    position: relative;
}.input-with-icon {
    position: relative;
}.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}.input-with-icon input,
.input-with-icon textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}.input-with-icon textarea {
    min-height: 150px;
    padding-top: 20px;
    resize: vertical;
}.input-with-icon label {
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}.input-with-icon textarea + label {
    top: 25px;
    transform: none;
}.input-with-icon input:focus,
.input-with-icon textarea:focus,
.input-with-icon input:not(:placeholder-shown),
.input-with-icon textarea:not(:placeholder-shown) {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.2);
    outline: none;
}.input-with-icon input:focus + label,
.input-with-icon textarea:focus + label,
.input-with-icon input:not(:placeholder-shown) + label,
.input-with-icon textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    background: var(--dark-bg);
    padding: 0 10px;
    color: var(--primary-color);
}.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    border: none;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transition: all 0.3s ease;
    z-index: -1;
}.submit-btn:hover::before {
    left: 0;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}.contact-info {
    flex: 1;
    min-width: 300px;
}.info-card {
    background: rgba(20, 20, 40, 0.7);
    border-radius: 15px;
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: all 0.3s ease;
}.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}.info-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}.info-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}.info-item:hover .info-icon {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: rotate(10deg) scale(1.1);
}.info-content h4 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}.info-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}.social-links {
    margin-top: 30px;
}.social-links h4 {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--light-text);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}.social-link i {
    position: relative;
    z-index: 1;
}.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}.social-link:hover::before {
    opacity: 1;
}.footer {
    background: rgba(10, 10, 26, 0.8);
    color: var(--light-text);
    padding: 30px 0 20px;
    position: relative;
    width: 100%;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 243, 255, 0.2);
    margin-top: 0;
}.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}.footer-logo {
    width: 100%;
    margin-bottom: 20px;
}.footer-logo .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 10px;
    display: inline-block;
    text-decoration: none;
}.footer-logo .logo span {
    color: var(--primary-color);
}.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 15px;
    line-height: 1.6;
    max-width: 600px;
    font-size: 0.9rem;
}.footer-links {
    margin: 15px 0;
}.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}.footer-links li {
    display: inline-block;
}.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-decoration: none;
}.footer-links a:hover {
    color: var(--primary-color);
}.footer-newsletter h4 {
    color: var(--light-text);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.8;
}.newsletter-form {
    display: flex;
    position: relative;
    margin-bottom: 20px;
}.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 0 0 8px;
    color: var(--light-text);
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 243, 255, 0.2);
}.newsletter-form button {
    padding: 0 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--light-text);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}.newsletter-form button:hover {
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}.social-links-footer {
    margin-top: 20px;
}.social-links-footer .social-icons {
    justify-content: flex-start;
}.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
    font-size: 0.9rem;
}.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}.legal-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}.legal-links a:hover {
    color: var(--primary-color);
}.legal-links a:hover::after {
    width: 100%;
}@media (max-width: 992px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }.footer-content {
        gap: 60px 30px;
    }.footer-logo, 
    .footer-links, 
    .footer-newsletter {
        flex: 1 1 calc(50% - 30px);
        min-width: 250px;
    }
}@media (max-width: 768px) {
    .contact-form,
    .info-card {
        padding: 30px;
    }.footer-logo, 
    .footer-links, 
    .footer-newsletter {
        flex: 1 1 100%;
    }.footer-bottom {
        flex-direction: column;
        text-align: center;
    }.legal-links {
        margin-top: 10px;
        justify-content: center;
    }
}@media (max-width: 576px) {
    .contact-form,
    .info-card {
        padding: 25px 20px;
    }
    .contact-form {
        margin-bottom: 30px;
    }
    .form-header h3 {
        font-size: 1.5rem;
    }
    .info-card h3 {
        font-size: 1.5rem;
    }
    .footer {
        padding-top: 60px;
    }
    .footer-links h4,
    .footer-newsletter h4 {
        font-size: 1.2rem;
    }
}
    