/* Contact Page Specific Styles */

/* Hero Contact Section */
.hero-contact {
    background: linear-gradient(135deg, #1e90ff 0%, #0066cc 100%);
    position: relative;
    padding: 100px 0 80px;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23grad)"/><circle cx="800" cy="200" r="80" fill="url(%23grad)"/><circle cx="600" cy="800" r="120" fill="url(%23grad)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #e6f3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 300;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    min-width: 300px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    opacity: 0.8;
    letter-spacing: 2px;
}

.contact-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-main-info {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #1e90ff;
    display: inline-block;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item strong {
    display: inline-block;
    background: #1e90ff;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.company-info {
    margin: 40px 0;
}

.company-info h2 {
    font-size: 28px;
    color: #1e90ff;
    margin-bottom: 25px;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.info-item .label {
    font-weight: 600;
    color: #555;
    min-width: 80px;
}

.info-item .value {
    color: #333;
    font-weight: 500;
}

/* Department Contacts */
.department-contacts {
    margin: 40px 0;
}

.department-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.department {
    background: linear-gradient(135deg, #1e90ff, #0066cc);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.department:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.3);
}

.dept-header {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.dept-contact {
    font-size: 14px;
}

.dept-contact .label {
    opacity: 0.8;
    margin-right: 5px;
}

.dept-contact .value {
    font-weight: 600;
    font-size: 15px;
}

.address-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 450px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.1) 10px, rgba(255,255,255,0.1) 20px),
        radial-gradient(circle at 20% 30%, rgba(30, 144, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
}

.map-info {
    text-align: center;
    z-index: 2;
}

.company-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 400px;
    margin-bottom: 20px;
}

.marker-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1e90ff;
}

.marker-content h4 {
    color: #1e90ff;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
}

.marker-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.map-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.map-btn {
    background: #1e90ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .contact-card {
        min-width: 280px;
    }
    
    .department-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-contact {
        padding: 60px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .contact-card {
        padding: 30px;
        min-width: auto;
    }
    
    .contact-card h2 {
        font-size: 24px;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .company-info h2 {
        font-size: 22px;
    }
    
    .department-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .department {
        padding: 15px;
    }
    
    .map-placeholder {
        height: 350px;
    }
    
    .company-marker {
        padding: 20px;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .company-info h2 {
        font-size: 20px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .info-item .label {
        min-width: auto;
        font-size: 14px;
    }
    
    .map-placeholder {
        height: 300px;
    }
    
    .map-controls {
        flex-wrap: wrap;
    }
    
    .map-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Technical Manager Section */
.technical-manager-section {
    margin: 40px 0;
}

.technical-manager-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes expandLine {
    from {
        width: 0%;
    }
    to {
        width: 30%;
    }
}

.contact-form,
.company-marker {
    animation: fadeInUp 0.6s ease-out;
}

.manager-card {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.department:nth-child(1) { animation-delay: 0.1s; }
.department:nth-child(2) { animation-delay: 0.2s; }
.department:nth-child(3) { animation-delay: 0.3s; }
.department:nth-child(4) { animation-delay: 0.4s; }