/* Corporate Contact Page - Minimal Dark Sidebar */

/* Map Section */
.map-section {
    width: 100%;
}

.map-container {
    width: 100%;
    height: 500px;
    border-bottom: 1px solid #e0e0e0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Contact Sidebar - Minimal Dark */
.contact-sidebar {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    border-radius: 4px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.sidebar-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-header h2 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.contact-items {
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.contact-item.whatsapp {
    background: rgba(37, 211, 102, 0.08);
}

.contact-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);
}

.contact-item.whatsapp .item-icon {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.item-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-icon i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.item-content {
    flex: 1;
}

.item-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.item-value {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.item-value:hover {
    color: #fff;
}

.item-value p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    line-height: 1.6;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 14px;
}

.required {
    color: #c0392b;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    z-index: 1;
}

.input-wrapper .form-control {
    padding-left: 48px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.input-wrapper textarea.form-control {
    padding-top: 14px;
    height: auto;
    resize: vertical;
}

.input-wrapper .form-control:focus {
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
    outline: none;
    background: #fff;
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed #ddd;
    border-radius: 4px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fafafa;
}

.file-upload-wrapper:hover {
    border-color: #2c3e50;
    background: #fff;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    pointer-events: none;
}

.file-upload-label i {
    font-size: 36px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.file-upload-label span {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-size: 14px;
}

.file-upload-label small {
    color: #999;
    font-size: 12px;
}

.btn-submit {
    width: 100%;
    height: 54px;
    background: #2c3e50;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.premium-alert {
    border-radius: 4px;
    border: none;
    padding: 16px 20px;
    font-weight: 500;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .map-container {
        height: 400px;
    }
    
    .contact-sidebar {
        position: static;
        margin-bottom: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .item-icon {
        width: 40px;
        height: 40px;
    }
    
    .item-icon i {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
}
