/* Contact Page Styles */

/* CONTACT HERO */
.contact-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, 
        rgba(14, 165, 233, 0.1) 0%, 
        rgba(2, 6, 23, 0.9) 50%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 242, 254, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.contact-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--sky), var(--electric));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* CONTACT INFO */
.contact-info-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(2, 6, 23, 0.95) 0%,
        rgba(2, 6, 23, 0.85) 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.info-sub {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.info-link {
    color: var(--sky);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap var(--transition-normal);
}

.info-link:hover {
    gap: 1rem;
}

/* CONTACT FORM */
.contact-form-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(14, 165, 233, 0.05) 0%,
        rgba(0, 242, 254, 0.03) 100%);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--sky);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-group label i {
    color: var(--sky);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--light);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--sky);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2394a3b8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.file-upload label {
    display: block;
    margin-bottom: 1rem;
}

.upload-area {
    border: 2px dashed var(--glass-border);
    border-radius: var(--radius-md);
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.upload-area:hover {
    border-color: var(--sky);
    background: rgba(14, 165, 233, 0.05);
}

.upload-area i {
    font-size: 3rem;
    color: var(--sky);
    margin-bottom: 1rem;
}

.upload-area p {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.upload-area span {
    color: var(--gray);
    font-size: 0.9rem;
}

.file-preview {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
}

.file-name {
    color: var(--light);
    font-size: 0.9rem;
    flex: 1;
}

.file-size {
    color: var(--gray);
    font-size: 0.8rem;
    margin: 0 1rem;
}

.remove-file {
    color: #ef4444;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
}

.consent .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: normal;
    cursor: pointer;
}

.consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.consent a {
    color: var(--sky);
    text-decoration: none;
}

.consent a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
}

.form-submit .btn {
    min-width: 200px;
}

.form-note {
    margin-top: 1rem;
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* MAP SECTION */
.map-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(2, 6, 23, 0.95) 0%,
        rgba(2, 6, 23, 0.85) 100%);
}

.map-wrapper {
    margin-top: 3rem;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    position: relative;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, 
        rgba(14, 165, 233, 0.1),
        rgba(30, 58, 138, 0.2));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--glass-border);
    max-width: 500px;
}

.map-overlay h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1.5rem;
}

.map-overlay p {
    color: var(--light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.map-overlay i {
    color: var(--sky);
}

/* FAQ SECTION */
.faq-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(14, 165, 233, 0.05) 0%,
        rgba(0, 242, 254, 0.03) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-normal);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    color: var(--sky);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem;
    max-height: 1000px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    color: var(--gray);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.faq-answer strong {
    color: var(--light);
}

/* CONTACT FINAL CTA */
.contact-final-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.1) 0%,
        rgba(14, 165, 233, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.contact-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--light);
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.social-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-contact span {
    color: var(--gray);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.25rem;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

/* ANIMATIONS */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .contact-hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .map-overlay {
        padding: 2rem;
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        text-align: center;
    }
    
    .contact-cta {
        flex-direction: column;
    }
    
    .contact-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}