/* ===== CONTACT PAGE STYLES ===== */
.contact-page {
    background: var(--dark-bg);
    color: var(--text-light);
    min-height: 100vh;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 50%, var(--primary-violet) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-illustration {
    position: relative;
    display: inline-block;
}

.contact-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: float-icon 3s ease-in-out infinite;
}

.floating-icon.icon-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    left: 5%;
    animation-delay: 1s;
}

.floating-icon.icon-3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Contact Form Styles */
.contact-form-section {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(142, 76, 235, 0.25);
    color: var(--text-light);
}

/* Fix for select options visibility */
.form-select option {
    background: #1a1a2e;
    color: white;
    padding: 0.5rem;
}

.form-select:focus option {
    background: #16213e;
    color: white;
}

/* Multiple select styling */
.form-select[multiple] {
    min-height: 120px;
}

.form-select[multiple] option {
    background: #1a1a2e;
    color: white;
    padding: 0.5rem;
    margin: 0.25rem 0;
}

.form-select[multiple] option:checked {
    background: var(--primary-purple);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.module-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.module-checkbox:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.module-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-purple);
}

.module-checkbox label {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
    cursor: pointer;
}

/* Contact Info Cards */
.contact-info-section {
    background: rgba(255, 255, 255, 0.02);
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-violet));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.contact-info-card h4 {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-violet);
    text-decoration: underline;
}

/* Company Info Section */
.company-info-section {
    background: rgba(255, 255, 255, 0.02);
}

.company-content {
    padding-right: 2rem;
}

.company-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.company-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-violet));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-content h5 {
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 4rem;´
        text-align: center;
    }
    
    .hero-title-main {
        font-size: 3.5rem !important;
         text-align: center;
    }
    
    .hero-title-sub {
        font-size: 2rem !important;
         text-align: center;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
    
    .company-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .hero-description  {
         text-align: center;
    }
    
    .hero-actions  {
         text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 4rem;
        text-align: center;
    }
    
    .hero-title-main {
        font-size: 3.5rem !important;
         text-align: center;
    }
    
    .hero-title-sub {
        font-size: 3rem !important;
         text-align: center;
    }
    
     .hero-description  {
         text-align: center;
    }
    
    .hero-actions  {
         text-align: center;
    }
}
